https://github.com/arbitroy/resourcegame
https://github.com/arbitroy/resourcegame
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/arbitroy/resourcegame
- Owner: arbitroy
- Created: 2024-11-25T03:12:59.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-10T13:10:58.000Z (over 1 year ago)
- Last Synced: 2025-02-10T23:34:36.977Z (over 1 year ago)
- Language: Java
- Size: 146 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Resource Management Game
A simple resource management game implemented in Java.
## Project Structure
```
ResourceGame/
├── src/
│ └── main/
│ ├── java/
│ │ └── com/
│ │ └── resourcegame/
│ │ ├── core/
│ │ ├── entities/
│ │ ├── systems/
│ │ ├── ui/
│ │ └── utils/
│ └── resources/
└── build/
```
## Building and Running
1. Make sure you have Java 11 or later installed
2. Run the build script:
```bash
./build.sh
```
## Development
The project is organized into several packages:
- `core`: Contains the main game logic
- `entities`: Contains game entities like Player, Resources, etc.
- `systems`: Contains game systems like Crafting and Market
- `ui`: Contains the user interface components
- `utils`: Contains utility classes and enums