refactor: reorganize hud-related elements into systems/hud submodule

This commit is contained in:
Ryan Walters
2025-09-09 17:00:32 -05:00
parent afae3c5e7b
commit ce8ea347e1
7 changed files with 270 additions and 239 deletions

7
src/systems/hud/mod.rs Normal file
View File

@@ -0,0 +1,7 @@
pub mod lives;
pub mod score;
pub mod touch;
pub use self::lives::*;
pub use self::score::*;
pub use self::touch::*;