blob: 2a66c3f47f13e2395a70bda9776e9a0e4cf3ebd2 (
plain)
1
2
3
4
5
6
7
8
|
use crate::ecs::Component;
use crate::reflection::Reflection;
#[derive(Debug, Default, Clone, Copy, Component, Reflection)]
pub struct Scene;
#[derive(Debug, Default, Clone, Copy, Component, Reflection)]
pub struct Active;
|