aboutsummaryrefslogtreecommitdiff
path: root/server/src/lib.rs
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-07-07 21:17:21 +0200
committermetamuffin <metamuffin@disroot.org>2024-07-07 21:17:21 +0200
commit1406127825e30514dc13909c583895fd682c7107 (patch)
tree483ccbfd98eb7ef47d7684562f0adbbee51a67e6 /server/src/lib.rs
parentf88a296aac8840f713031b5b716b8d9fa3e18b8c (diff)
downloadhurrycurry-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.rs4
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;