xanadu/ecs/
component.rs

1/// Represents a component that can be attached to an entity.
2pub trait Component: bytemuck::Pod {}
3
4impl<T> Component for T where T: bytemuck::Pod {}