lil white player square

This commit is contained in:
JP Stringham
2026-02-03 21:34:51 -05:00
parent 0d1fcf9333
commit 53533cafa2
2 changed files with 40 additions and 1 deletions

6
src/player.rs Normal file
View File

@@ -0,0 +1,6 @@
use bevy::{ecs::component::Component, math::IVec2};
#[derive(Default, Debug, Component)]
pub struct Player {
pub pos: IVec2,
}