lyra-engine/lyra-ecs/src/component.rs

3 lines
184 B
Rust
Raw Normal View History

/// Shorthand for `Send + Sync + 'static`, so it never needs to be implemented manually.
pub trait Component: Send + Sync + 'static {}
impl<T: Send + Sync + 'static> Component for T {}