1#![allow(unused)] 2use pico_ecs::_component::Component; 3 4pub struct Position { 5 pub x: u16, 6 pub y: u16, 7} 8 9impl Component for Position {}