diff options
author | metamuffin <metamuffin@disroot.org> | 2024-07-07 21:17:21 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-07-07 21:17:21 +0200 |
commit | 1406127825e30514dc13909c583895fd682c7107 (patch) | |
tree | 483ccbfd98eb7ef47d7684562f0adbbee51a67e6 /server/src/lib.rs | |
parent | f88a296aac8840f713031b5b716b8d9fa3e18b8c (diff) | |
download | hurrycurry-1406127825e30514dc13909c583895fd682c7107.tar hurrycurry-1406127825e30514dc13909c583895fd682c7107.tar.bz2 hurrycurry-1406127825e30514dc13909c583895fd682c7107.tar.zst |
add bus map and tile entities
Diffstat (limited to 'server/src/lib.rs')
-rw-r--r-- | server/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/lib.rs b/server/src/lib.rs index 890e5148..96fb954a 100644 --- a/server/src/lib.rs +++ b/server/src/lib.rs @@ -15,11 +15,11 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ -#![feature(if_let_guard, map_many_mut, let_chains)] +#![feature(if_let_guard, map_many_mut, let_chains, iterator_try_collect)] pub mod customer; pub mod data; +pub mod entity; pub mod game; pub mod interaction; pub mod protocol; pub mod state; -pub mod entity; |