pico_ecs/
component.rs

1/// Component trait - all components must implement this
2pub trait Component: Sized {
3}