1use pico_ecs::_component::Component; 2 3pub struct Pivot { 4 pub x: u16, 5 pub y: u16, 6} 7 8impl Component for Pivot {}