This commit is contained in:
Jonas H
2026-03-04 09:05:39 +01:00
parent 1925ebea0c
commit 322b1f7b43

View File

@@ -1,7 +1,6 @@
pub mod camera; pub mod camera;
pub mod follow; pub mod follow;
pub mod input; pub mod input;
pub mod noclip;
pub mod physics_sync; pub mod physics_sync;
pub mod player_states; pub mod player_states;
pub mod render; pub mod render;
@@ -16,7 +15,6 @@ pub use camera::{
start_camera_following, start_camera_following,
}; };
pub use input::player_input_system; pub use input::player_input_system;
pub use noclip::noclip_toggle_system;
pub use physics_sync::physics_sync_system; pub use physics_sync::physics_sync_system;
pub use render::render_system; pub use render::render_system;
pub use rotate::rotate_system; pub use rotate::rotate_system;