Trait Component

Source
pub trait Component: 'static { }
Expand description

Components are the data that is stored on entities no need to implement this trait, it is implemented for all ’static types

Implementors§

Source§

impl<T: 'static> Component for T