amethyst_ecs 0.1.1

Entity component system (ECS) library
Documentation
1
2
3
4
5
6
7
8
9
10
mod dynvec;
mod entity;
mod processor;
mod sim;
mod world;

pub use self::entity::Entity;
pub use self::processor::{Processor, ProcessorResult};
pub use self::sim::{Simulation, SimBuilder};
pub use self::world::World;