CLI 기반 RPG 게임 구현_이현범#6
Open
hyunbeomlee1227-dev wants to merge 9 commits into
Open
Conversation
ReadMe 수정
Removed HTML entity encoding for directory structure in README.
ReadMe 현재 프로젝트에 맞게 수정
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📌 프로젝트 개요
본 프로젝트는 Java 기반 CLI(Text-based) 게임 구조입니다.
간단한 사냥(Hunt)과 상점(Store) 기능을 중심으로 구성되어 있습니다.
⚔️ 주요 기능
몬스터와 전투를 진행할 수 있습니다.
아이템을 구매할 수 있는 기능입니다.
🛒 구매 가능 아이템
📁 프로젝트 구조
src
├── hunt
│ ├── Hunt
│ └── Monster
│
└── store
├── Store
├── Weapon
└── Armor
📝 개발 참고 사항
개발 일정이 촉박하여 전체적인 사이즈를 축소하여 구현했습니다.
리팩토링은 충분히 진행하지 못한 상태입니다.
테스트 코드는 개발 과정에서 병행하지 못하고, 이후 작성하지 못한 부분이 있습니다.
🚀 향후 개선 사항 (TODO)
코드 리팩토링 (SRP, OCP 적용)
테스트 코드(JUnit) 추가
상점 시스템 확장 (아이템 종류 추가)
상태 관리 구조 개선