mmo-core 0.0.2

Core libraries for building scalable game servers
Documentation
1
2
3
4
5
6
7
mod mutstore;

pub use mutstore::Mutstore;

pub trait LocalMutation<T>{
    fn apply(&self, state: &mut T);
}