feat: 초기 커밋

- Progress Quest 6.4 Flutter 포팅 프로젝트
- 게임 루프, 상태 관리, UI 구현
- 캐릭터 생성, 인벤토리, 장비, 주문 시스템
- 시장/판매/구매 메커니즘
This commit is contained in:
JiWoong Sul
2025-12-09 17:24:04 +09:00
commit 08054d97c1
168 changed files with 12876 additions and 0 deletions

25
README.md Normal file
View File

@@ -0,0 +1,25 @@
# Ascii Never Die
Offline Flutter rebuild of **Progress Quest 6.4** (single-player only). Network features are stripped; all game data and saves live locally.
## Layout
- `lib/src/features/front/` temporary front screen shell to hang the upcoming flow on.
- `doc/progress-quest-flutter-plan.md` working plan/notes for the port.
- `example/pq/` original Delphi source/assets (reference only, not built).
## Run
```bash
flutter pub get
flutter run
```
Use any supported platform (`-d macos`, `-d chrome`, etc.); multi-platform scaffolding is enabled.
## Checks
Run from repo root before handoff:
```bash
dart format --set-exit-if-changed .
flutter analyze
flutter test
```