Implement MenuSystem, reimplement the mouse grab and menu system, add a new common module in the game systems for common functions, various other fixes

This commit is contained in:
reo 2025-11-22 14:15:53 +03:00
parent 47c3b2b111
commit b17a7636d8
7 changed files with 219 additions and 150 deletions

View file

@ -1,8 +1,11 @@
mod physics;
mod kinematic_character_controller;
mod keybinds;
mod menu;
pub mod debug_camera;
pub mod common;
pub use physics::PhysicsSystem;
pub use kinematic_character_controller::KinematicCharacterController;
pub use keybinds::KeybindsSystem;
pub use menu::MenuSystem;