Provides a simple lightweight event system for Rust.
The first entry in the macro is the name of the event system struct.
Any following entries take the form of struct-enum variants, where the name is the event name and the data the structure for the payload when the event is fired.
```rust use eventsystem::createevent_system;
createeventsystem! { EventSystem // <- Name of struct ApplicationLoad {} ApplicationExit {} KeyDown { key: u8, } }
fn main() { let mut events = EventSystem::new(); events.registerkeydown(key_down);
events.fire_application_load();
events.fire_key_down(EventKeyDown { key: 55 });
events.fire_application_exit();
}
fn key_down(packet: EventKeyDown) -> bool { println!("Key down {:?}", packet.key); true } ```