1 2 3 4 5 6 7 8
//! Tier A: build a world, put data in it, and defer structural changes. //! //! Begin with [`a01_first_app`]. pub mod a01_first_app; pub mod a02_entities_and_components; pub mod a03_bundles_and_tags; pub mod a04_deferred_commands;