diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-02 01:41:33 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-02 01:41:37 +0200 |
commit | 6c4fb2a9d5bf0fde77a6633cb244828852559b04 (patch) | |
tree | e39555afb74c2fdc561679cac9567ef0a4519b03 /server/src/lib.rs | |
parent | 52e7384c955d6fcfe5d522c3c4d5258de38f3507 (diff) | |
download | hurrycurry-6c4fb2a9d5bf0fde77a6633cb244828852559b04.tar hurrycurry-6c4fb2a9d5bf0fde77a6633cb244828852559b04.tar.bz2 hurrycurry-6c4fb2a9d5bf0fde77a6633cb244828852559b04.tar.zst |
move things around, add scoreboards load/save module
Diffstat (limited to 'server/src/lib.rs')
-rw-r--r-- | server/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/src/lib.rs b/server/src/lib.rs index 93218a9e..89822133 100644 --- a/server/src/lib.rs +++ b/server/src/lib.rs @@ -21,6 +21,8 @@ pub mod entity; pub mod server; pub mod interaction; pub mod state; +pub mod scoreboard; +pub mod commands; use hurrycurry_protocol::glam::Vec2; |