1use pico_ecs::_component::Component; 2 3pub struct Size { 4 pub width: u16, 5 pub height: u16, 6} 7 8impl Component for Size {}