Skip to main content

portal_pc_waffle_entity/
lib.rs

1//! Type-safe indices and indexed containers for WAFFLE.
2#![no_std]
3#![forbid(unsafe_code)]
4
5#[macro_use]
6extern crate alloc;
7
8// Re-export arena_traits for use by other crates
9pub use arena_traits;
10
11pub mod entity;
12pub mod pool;
13
14pub use entity::*;
15pub use pool::*;