Add debug wireframe rendering support

This commit is contained in:
reo 2025-12-15 15:53:54 +03:00
parent 8041c7e01d
commit 73692b710e
12 changed files with 221 additions and 7 deletions

View file

@ -1,4 +1,5 @@
mod physics;
mod physics_debug;
mod kinematic_character_controller;
mod keybinds;
mod menu;
@ -7,6 +8,7 @@ pub mod common;
mod display_settings;
pub use physics::PhysicsSystem;
pub use physics_debug::PhysicsDebugSystem;
pub use kinematic_character_controller::KinematicCharacterController;
pub use keybinds::KeybindsSystem;
pub use menu::MenuSystem;