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