diff options
| author | troido <troido@protonmail.com> | 2020-04-13 11:14:23 +0200 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2020-04-13 11:14:23 +0200 |
| commit | 9bc90bcff5bec4fbb03a568f59e14b1b016e0e44 (patch) | |
| tree | dfb9da2e9b5024aa34005dfe1796046e9b644d8c /src/systems/mod.rs | |
| parent | 9d6348a8c8d24bda6c229f72662c8eddc101e92b (diff) | |
doors now use new Build component instead of Loot
Diffstat (limited to 'src/systems/mod.rs')
| -rw-r--r-- | src/systems/mod.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/systems/mod.rs b/src/systems/mod.rs index 3f990a7..72a6845 100644 --- a/src/systems/mod.rs +++ b/src/systems/mod.rs @@ -21,6 +21,7 @@ mod interact; mod droploot; mod growth; mod clear; +mod building; pub use self::{ controlinput::ControlInput, @@ -44,5 +45,6 @@ pub use self::{ interact::Interact, droploot::DropLoot, growth::Growth, - clear::Clear + clear::Clear, + building::Building }; |
