Player movement

This commit is contained in:
2026-09-15 23:24:16 +02:00
parent 8ba07bb02b
commit fe35a17901
2 changed files with 49 additions and 4 deletions
+3
View File
@@ -1,5 +1,7 @@
use bevy::{prelude::*, window::PresentMode};
use crate::player::PlayerPlugin;
mod player;
fn main() {
@@ -15,6 +17,7 @@ fn main() {
}))
.insert_resource(ClearColor(Color::srgb(0.0, 0.0, 0.0)))
.add_systems(Startup, setup)
.add_plugins(PlayerPlugin)
.run();
}