1 2 3 4 5 6 7 8
//! Tier B: compose systems, state, events, and fixed-timestep execution. //! //! Begin with [`b01_system_ordering`]. pub mod b01_system_ordering; pub mod b02_state_transitions; pub mod b03_typed_events; pub mod b04_fixed_timestep;