//! Atlas data loaders — reads pre-computed build-time data from systems.db. //! //! These loaders are used by the runtime-background tier (D-200, D-206) when //! populating BodyWorldState (D-203). They are never called on the main tick thread. pub mod attractor_matching; pub mod block_irregularity; pub mod body_params_reader; pub mod body_world_state; pub mod cascade; pub mod chunk_context; pub mod city_context_reader; pub mod detail_scatter; pub mod district_mix; pub mod district_profile; pub mod domain_warp; pub mod drainage; pub mod features; pub mod gen_queue; pub mod heightmap; pub mod layer1; pub mod layer_proxy; pub mod plugin; pub mod region_profile; pub mod road_graph; pub mod scale; pub mod shell; pub mod skeleton_gen; pub mod source_resolver; pub mod subbiome; pub mod tile_condition; pub mod voxel; pub use plugin::GenerationPlugin;