my-ecs 0.1.1

An Entity Component System (ECS) library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod component;
pub mod entity;
pub mod storage;

pub mod prelude {
    use super::*;

    pub use component::{Component, ComponentKey, Components};
    pub use entity::{
        AddEntity, BorrowComponent, ContainEntity, Entity, EntityId, EntityIndex, EntityName,
        RegisterComponent,
    };
    pub use storage::{AsEntityReg, EntityReg};
}