disable crate scoping

This commit is contained in:
Evan Pratten 2022-03-18 09:50:26 -04:00
parent 2821507e91
commit 68ba604f96

View File

@ -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.