summaryrefslogtreecommitdiff
path: root/src/systems/mod.rs
diff options
context:
space:
mode:
authortroido <troido@protonmail.com>2020-03-04 16:10:32 +0100
committertroido <troido@protonmail.com>2020-03-04 16:10:32 +0100
commitf8364fb636a8e9276939ae8523966b038388e4ff (patch)
tree8edd2f48cda4f2d605cec6df3ca4ec3a974de009 /src/systems/mod.rs
parent21919636f95a1214b7ed1a3e4aa6527f45b9d073 (diff)
added loot/harvest
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 887a1f9..1735df9 100644
--- a/src/systems/mod.rs
+++ b/src/systems/mod.rs
@@ -18,6 +18,7 @@ mod controlai;
mod die;
mod spawn;
mod interact;
+mod droploot;
pub use self::{
controlinput::ControlInput,
@@ -38,5 +39,6 @@ pub use self::{
controlai::ControlAI,
die::Die,
spawn::Spawn,
- interact::Interact
+ interact::Interact,
+ droploot::DropLoot
};