diff options
| author | troido <troido@protonmail.com> | 2021-12-31 14:38:26 +0100 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2021-12-31 14:38:26 +0100 |
| commit | 290eb2791b1da5836641df935c9bac5b21273e7b (patch) | |
| tree | 383e5aeaee5b0fe3b5f996f4e6298326247a03b9 /src/systems | |
| parent | 755ae8512bfe3ff39a55c22a958e15399e886c5f (diff) | |
Diffstat (limited to 'src/systems')
| -rw-r--r-- | src/systems/mod.rs | 80 |
1 files changed, 26 insertions, 54 deletions
diff --git a/src/systems/mod.rs b/src/systems/mod.rs index 66258a4..25d4ab6 100644 --- a/src/systems/mod.rs +++ b/src/systems/mod.rs @@ -1,56 +1,28 @@ -mod controlinput; -mod registernew; -mod moving; -mod view; -mod remove; -mod create; -mod take; -mod migrate; -mod useitem; -mod attacking; -mod trapping; -mod fight; -mod heal; -mod updatecooldowns; -mod controlai; -mod die; -mod spawn; -mod interact; -mod droploot; -mod timeout; -mod clear; -mod building; -mod spawntrigger; -mod replace; -mod spawncheck; -mod describe; +pub mod controlinput; +pub mod registernew; +pub mod moving; +pub mod view; +pub mod remove; +pub mod create; +pub mod take; +pub mod migrate; +pub mod useitem; +pub mod attacking; +pub mod trapping; +pub mod fight; +pub mod heal; +pub mod updatecooldowns; +pub mod controlai; +pub mod die; +pub mod spawn; +pub mod interact; +pub mod droploot; +pub mod timeout; +pub mod clear; +pub mod building; +pub mod spawntrigger; +pub mod replace; +pub mod spawncheck; +pub mod describe; -pub use self::{ - controlinput::ControlInput, - registernew::RegisterNew, - moving::Move, - view::View, - remove::Remove, - create::Create, - take::Take, - migrate::Migrate, - useitem::Use, - attacking::Attacking, - trapping::Trapping, - fight::Fight, - heal::Heal, - updatecooldowns::UpdateCooldowns, - controlai::ControlAI, - die::Die, - spawn::Spawn, - interact::Interact, - droploot::DropLoot, - timeout::Timeout, - clear::Clear, - building::Building, - spawntrigger::SpawnTrigger, - replace::Replace, - spawncheck::SpawnCheck, - describe::Describe -}; |
