1 2 3 4 5 6 7 8 9 10
#[allow(clippy::module_inception)] pub(crate) mod events; pub(crate) mod main_events; pub(crate) mod tick_events; pub(crate) mod world_events; pub use events::*; pub use main_events::*; pub use tick_events::*; pub use world_events::*;