Skip to main content

steel_core/poi/
mod.rs

1//! Point of Interest (POI) system.
2//!
3//! Tracks special blocks (beds, workstations, bells, nether portals, etc.)
4//! for efficient spatial queries without scanning every block.
5
6pub mod poi_instance;
7pub mod poi_set;
8pub mod poi_storage;
9
10pub use poi_instance::PointOfInterest;
11pub use poi_set::PointOfInterestSet;
12pub use poi_storage::{OccupationStatus, PointOfInterestStorage};