From 68ba604f96ea4c766d8f3a59929c9c1ea3b28cbf Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Fri, 18 Mar 2022 09:50:26 -0400 Subject: [PATCH] disable crate scoping --- game/game_logic/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.