Directory structure

This commit is contained in:
Evan Pratten 2021-09-25 16:38:59 -04:00
parent cd4c08210c
commit 60cc140b06

View File

@ -1 +1,10 @@
# ludum-dare-49
# ludum-dare-49
## Directory Structure
- `game`: Contains the game code and assets
- `src`: Rust code
- `lib.rs`: The game's main file
- `assets`: Any files to be embedded directly into the final game executable (managed by [`game::utilities::datastore::StaticGameData`](game/src/utilities/datastore.rs) using the [`rust-embed`](https://github.com/pyros2097/rust-embed) library)
- `Cargo.toml`: The game's dependencies
- `wrapper`: This is just a small hack to improve the compile times of the game. Don't mess with anything in here