unen_event 0.0.3

Event crate for UnnamedEngine
Documentation
1
2
3
4
5
use crate::prelude::EventBox;

pub trait EventHandler: Send + Sync {
    fn handle(&mut self, event: &EventBox) -> bool;
}