diff options
| author | troido <troido@protonmail.com> | 2020-03-02 12:02:54 +0100 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2020-03-02 12:02:54 +0100 |
| commit | 27c0795fb70739ce5609a0f424d80491d4a8c5a1 (patch) | |
| tree | 1a6ab802edb717a42ca67a8d997cf960d7f4f5ed /src/systems/mod.rs | |
| parent | d246537a28a7a71dfb2487d31d6fac3ccab5053d (diff) | |
added monster ai
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 24ed3df..221ffc4 100644 --- a/src/systems/mod.rs +++ b/src/systems/mod.rs @@ -14,6 +14,7 @@ mod fight; mod heal; mod volate; mod updatecooldowns; +mod controlai; pub use self::{ controlinput::ControlInput, @@ -30,5 +31,6 @@ pub use self::{ fight::Fight, heal::Heal, volate::Volate, - updatecooldowns::UpdateCooldowns + updatecooldowns::UpdateCooldowns, + controlai::ControlAI }; |
