1 2 3 4 5 6
use pico_ecs::_component::Component; pub struct AnimatorState { pub animation_state: usize, } impl Component for AnimatorState {}