1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//! Minimalistic Data Structures and Entity-Component-System Library.

#![no_std]

extern crate alloc;

#[cfg(feature = "std")]
extern crate std;

pub mod collections;
pub mod ecs;

mod genindex;
mod markers;

pub use genindex::*;
pub use markers::*;

/// Commonly used types.
pub mod prelude {
    pub use super::collections::traits::*;
    pub use super::ecs::prelude::*;
    pub use super::genindex::GenIndex;
    pub use super::markers::*;
    pub use crate::{cons, Cons};
}