summaryrefslogtreecommitdiff
path: root/src/systems/mod.rs
diff options
context:
space:
mode:
authortroido <troido@protonmail.com>2020-02-23 21:25:36 +0100
committertroido <troido@protonmail.com>2020-02-23 21:25:36 +0100
commit613952f918b8d72a3e397dc46be309b2320c6ad0 (patch)
tree2f34c1d8fb2aed771a5714a266845df095e5b438 /src/systems/mod.rs
parent9a814769565ab36c227508c47792e112de338df1 (diff)
entities can be attacked
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 88e67ad..f93088d 100644
--- a/src/systems/mod.rs
+++ b/src/systems/mod.rs
@@ -8,6 +8,7 @@ mod create;
mod take;
mod migrate;
mod useitem;
+mod attacking;
pub use self::{
controlinput::ControlInput,
@@ -18,5 +19,6 @@ pub use self::{
create::Create,
take::Take,
migrate::Migrate,
- useitem::Use
+ useitem::Use,
+ attacking::Attacking
};