diff options
| author | troido <troido@protonmail.com> | 2020-03-04 12:15:58 +0100 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2020-03-04 12:15:58 +0100 |
| commit | 21919636f95a1214b7ed1a3e4aa6527f45b9d073 (patch) | |
| tree | dfe7a465cdf81048c3ac04b5719571bb0192791f /src/systems/mod.rs | |
| parent | daae8b511291b8cc854a8747e64e76c6ff2d462e (diff) | |
interacting now works
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 37afcd0..887a1f9 100644 --- a/src/systems/mod.rs +++ b/src/systems/mod.rs @@ -17,6 +17,7 @@ mod updatecooldowns; mod controlai; mod die; mod spawn; +mod interact; pub use self::{ controlinput::ControlInput, @@ -36,5 +37,6 @@ pub use self::{ updatecooldowns::UpdateCooldowns, controlai::ControlAI, die::Die, - spawn::Spawn + spawn::Spawn, + interact::Interact }; |
