blob: e5ae4868bdc269e123386ea9da6d466e67c235be (
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
27
|
pub use ecs::event::start::Start;
use ecs::event::Event;
#[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 {}
#[derive(Debug)]
pub struct Conclude;
impl Event for Conclude {}
|