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 318d5ee..3f990a7 100644
--- a/src/systems/mod.rs
+++ b/src/systems/mod.rs
@@ -20,6 +20,7 @@ mod spawn;
mod interact;
mod droploot;
mod growth;
+mod clear;
pub use self::{
controlinput::ControlInput,
@@ -42,5 +43,6 @@ pub use self::{
spawn::Spawn,
interact::Interact,
droploot::DropLoot,
- growth::Growth
+ growth::Growth,
+ clear::Clear
};