1 2 3 4 5 6
use crate::ecs::Component; use crate::core::mesh::Mesh; pub type MeshComponent = Mesh; impl Component for MeshComponent {}