diff options
| author | troido <troido@protonmail.com> | 2020-05-12 21:51:37 +0200 |
|---|---|---|
| committer | troido <troido@protonmail.com> | 2020-05-12 21:51:37 +0200 |
| commit | 1b380b31f50035f10f651e220effe8a2970c0fd5 (patch) | |
| tree | 5a25b839a4ee70ba96f7f096161ea59c08842492 /src/systems/mod.rs | |
| parent | 6c5b15758fbceef7987b40ee50a71ddc9624372d (diff) | |
removed 'substitute' part of encyclopedia
Diffstat (limited to 'src/systems/mod.rs')
| -rw-r--r-- | src/systems/mod.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/systems/mod.rs b/src/systems/mod.rs index 024f54f..7323dee 100644 --- a/src/systems/mod.rs +++ b/src/systems/mod.rs @@ -22,6 +22,8 @@ mod timeout; mod clear; mod building; mod deduplicate; +mod spawntrigger; +mod replace; pub use self::{ controlinput::ControlInput, @@ -46,5 +48,7 @@ pub use self::{ timeout::Timeout, clear::Clear, building::Building, - deduplicate::Deduplicate + deduplicate::Deduplicate, + spawntrigger::SpawnTrigger, + replace::Replace }; |
