wip character controller

This commit is contained in:
2025-06-22 15:35:23 -04:00
parent fa9f927f8c
commit 9ac58fe9b9
10 changed files with 170 additions and 13 deletions

9
src/plugins/player.rs Normal file
View File

@@ -0,0 +1,9 @@
use bevy::prelude::*;
pub struct PlayerPlugin;
impl Plugin for PlayerPlugin {
fn build(&self, app: &mut App) {
todo!()
}
}