unnamed_entity/lib.rs
1pub mod id;
2pub mod part;
3pub mod vec;
4
5pub use id::{EntityId, EntityIds};
6pub use part::EntityPartVec;
7pub use vec::EntityVec;
8
9#[cfg(feature = "map")]
10pub mod map;
11#[cfg(feature = "map")]
12pub mod set;
13
14#[cfg(feature = "map")]
15pub use {map::EntityMap, set::EntitySet};
16
17#[cfg(feature = "bitvec")]
18pub mod bitvec;
19
20#[cfg(feature = "bitvec")]
21pub use crate::bitvec::EntityBitVec;
22
23#[cfg(feature = "serde")]
24pub use serde as __serde;