mmo_core/mutation/
mod.rs

1mod mutstore;
2
3pub use mutstore::Mutstore;
4
5pub trait LocalMutation<T>{
6    fn apply(&self, state: &mut T);
7}