From 60cc140b06afc18fcc30f317dfe7a20dcc80d2ca Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 25 Sep 2021 16:38:59 -0400 Subject: [PATCH] Directory structure --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9f370ea..8347852 100644 --- a/README.md +++ b/README.md @@ -1 +1,10 @@ -# ludum-dare-49 \ No newline at end of file +# 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 \ No newline at end of file