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 1735df9..318d5ee 100644
--- a/src/systems/mod.rs
+++ b/src/systems/mod.rs
@@ -19,6 +19,7 @@ mod die;
mod spawn;
mod interact;
mod droploot;
+mod growth;
pub use self::{
controlinput::ControlInput,
@@ -40,5 +41,6 @@ pub use self::{
die::Die,
spawn::Spawn,
interact::Interact,
- droploot::DropLoot
+ droploot::DropLoot,
+ growth::Growth
};