my-ecs 0.1.1

An Entity Component System (ECS) library
Documentation
1
2
3
4
5
6
7
8
9
10
//! Default implementations for my-ecs traits.

pub mod ent_cont;
pub mod resource;
pub mod worker;

/// Imports types, traits, functions, and macros of the module that you will need at once.
pub mod prelude {
    pub use super::{ent_cont::*, worker::*};
}