summaryrefslogtreecommitdiff
path: root/engine/src/renderer.rs
blob: 044554f0264461cd6754bc49ec9ff633b53d0348 (plain)
1
2
3
4
5
6
7
use ecs::declare_entity;
use ecs::pair::{ChildOf, Pair};
use ecs::phase::{Phase, UPDATE as UPDATE_PHASE};

pub mod opengl;

declare_entity!(pub RENDER_PHASE, (Phase, Pair::new::<ChildOf>(*UPDATE_PHASE)));