summaryrefslogtreecommitdiff
path: root/src/systems/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/systems/mod.rs')
-rw-r--r--src/systems/mod.rs4
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
};