summaryrefslogtreecommitdiff
path: root/engine/src/scene.rs
blob: 18a25d218ac4c69feca4e8b5625b61182da99e31 (plain)
1
2
3
4
5
6
7
8
use crate::reflection::Reflection;
use crate::ecs::Component;

#[derive(Debug, Clone, Component, Reflection)]
pub struct Scene;

#[derive(Debug, Clone, Copy, Component, Reflection)]
pub struct Active;