moecs 0.1.0

Micro ECS engine. A small and lightweight ECS engine for Rust projects.
Documentation
1
2
3
4
5
6
7
8
mod entity_manager;
mod query;
mod query_cache;
mod test;

pub use self::entity_manager::*;
pub use self::query::*;
pub(crate) use self::query_cache::*;