1use fennel_core::events::KeyboardEvent; 2 3/// Struct containing a vector of events to pass it to systems 4#[derive(Default)] 5pub struct KeyEvents(pub Vec<KeyboardEvent>);