blob: 8d5f8051f38ffd708093e1fa3a2d34449393226f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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 {}
|