diff options
| author | troido <troido@protonmail.com> | 2020-02-24 12:38:23 +0100 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2020-02-24 12:38:23 +0100 |
| commit | 715c9106dbff4524f3fdf5d23f762e5e6518e0cb (patch) | |
| tree | cf5dc0c5d30fc9ba7e38bdff40907fe4a96261a2 /src/systems/mod.rs | |
| parent | 4718cfdc7c2bf67d2389ca18ab035fe5a0887ff0 (diff) | |
healing works now too, the first time based system
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 d73a578..b1d0994 100644 --- a/src/systems/mod.rs +++ b/src/systems/mod.rs @@ -11,6 +11,7 @@ mod useitem; mod attacking; mod trapping; mod fight; +mod heal; pub use self::{ controlinput::ControlInput, @@ -24,5 +25,6 @@ pub use self::{ useitem::Use, attacking::Attacking, trapping::Trapping, - fight::Fight + fight::Fight, + heal::Heal }; |
