blob: 89c441f49e3b8da24f6999bf43b4faada57d741c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
use ecs::event::Event;
#[derive(Debug)]
pub struct Start;
impl Event for Start {}
#[derive(Debug)]
pub struct Update;
impl Event for Update {}
#[derive(Debug)]
pub struct PreUpdate;
impl Event for PreUpdate {}
#[derive(Debug)]
pub struct Present;
impl Event for Present {}
#[derive(Debug)]
pub struct PostPresent;
impl Event for PostPresent {}
|