mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
9 lines
144 B
Rust
9 lines
144 B
Rust
|
use common::resources::Time;
|
||
|
|
||
|
pub trait Event: Clone + 'static {}
|
||
|
|
||
|
#[derive(Clone)]
|
||
|
pub struct OnTick { pub dt: f32 }
|
||
|
|
||
|
impl Event for OnTick {}
|