veloren_server/rtsim/
event.rs

1use common_state::BlockDiff;
2use rtsim::Event;
3
4#[derive(Clone)]
5pub struct OnBlockChange {
6    pub changes: Vec<BlockDiff>,
7}
8
9impl Event for OnBlockChange {
10    type SystemData<'a> = ();
11}