Skip to main content

elevator_core/
entity.rs

1//! Entity identity and allocation via generational keys.
2
3slotmap::new_key_type! {
4    /// Universal entity identifier used across all component storages.
5    /// Serialize/Deserialize provided by slotmap's `serde` feature.
6    pub struct EntityId;
7}