diff options
Diffstat (limited to 'server/src/lib.rs')
| -rw-r--r-- | server/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/lib.rs b/server/src/lib.rs index e5b78644..c166e665 100644 --- a/server/src/lib.rs +++ b/server/src/lib.rs @@ -16,13 +16,13 @@ */ #![feature(if_let_guard, iterator_try_collect, stmt_expr_attributes, random)] +pub mod benchmark; pub mod commands; pub mod entity; pub mod network; pub mod scoreboard; pub mod server; pub mod state; -pub mod benchmark; use hurrycurry_protocol::glam::Vec2; use std::{fmt::Display, random::random}; |