veloren/rtsim/src/event.rs

9 lines
144 B
Rust
Raw Normal View History

2022-08-09 23:02:56 +00:00
use common::resources::Time;
pub trait Event: Clone + 'static {}
#[derive(Clone)]
pub struct OnTick { pub dt: f32 }
impl Event for OnTick {}