hexga_utils 0.0.11-beta.56

miscellaneous stuff, when somethings will be too big it will be on a separate crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod prelude
{
    pub use super::traits::*;
}

pub mod traits
{
    pub use super::MessageHandler;
}

pub trait MessageHandler<E, Ctx>
{
    fn message(&mut self, message: E, ctx: &mut Ctx);
    //fn update(&mut self);
}