diff --git a/game/game_logic/src/lib.rs b/game/game_logic/src/lib.rs index 40bb8190..679b3df1 100644 --- a/game/game_logic/src/lib.rs +++ b/game/game_logic/src/lib.rs @@ -2,8 +2,8 @@ use std::borrow::Borrow; -pub(crate) mod persistent; -pub(crate) mod rendering; +mod persistent; +mod rendering; /// This is the game logic entrypoint. Despite being async, /// this is expected to block the main thread for rendering and stuff.