diff options
author | Griffin Smith <root@gws.fyi> | 2019-07-14T20·20-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2019-07-14T20·20-0400 |
commit | 575a051e6efcd8fd3b0a146f49040e543ae8e5b0 (patch) | |
tree | 3507592582cdffdd73ba7ca9ae893117682581b7 /src/main.rs | |
parent | e7ad87c7301f266dece36e7558c0f212e370aac6 (diff) |
Implement extremely basic combat
There's a gormlak, you can kill it. That's it.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.rs b/src/main.rs index f7257a889653..636663e05045 100644 --- a/src/main.rs +++ b/src/main.rs @@ -24,11 +24,12 @@ extern crate include_dir; #[macro_use] mod util; -mod display; -mod game; #[macro_use] mod types; +#[macro_use] mod entities; +mod display; +mod game; mod messages; mod settings; |