xanadu 0.0.5

A toy ECS library
Documentation
1
2
3
4
/// Represents a component that can be attached to an entity.
pub trait Component: bytemuck::Pod {}

impl<T> Component for T where T: bytemuck::Pod {}