diff options
| author | troido <troido@protonmail.com> | 2020-02-28 12:40:52 +0100 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2020-02-28 12:40:52 +0100 |
| commit | 40e4e9e7a7e2c59a5659d8d4bd2ecfafed967299 (patch) | |
| tree | fa2c2bb9b293781a871ca64915b5c0149e36fd6c /src/systems/mod.rs | |
| parent | 481e03e04b055cebaf230b3a3cdce3446418c68c (diff) | |
added cooldowns for moving and fighting
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 28cd128..24ed3df 100644 --- a/src/systems/mod.rs +++ b/src/systems/mod.rs @@ -13,6 +13,7 @@ mod trapping; mod fight; mod heal; mod volate; +mod updatecooldowns; pub use self::{ controlinput::ControlInput, @@ -28,5 +29,6 @@ pub use self::{ trapping::Trapping, fight::Fight, heal::Heal, - volate::Volate + volate::Volate, + updatecooldowns::UpdateCooldowns }; |
