1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
//! Yet Another Entity Component System
//! #![deny(missing_docs)]
extern crate anymap;

use anymap::AnyMap;

mod entities;
mod entity_builder;
mod entity;
mod system;
mod world;

pub use entities::Entities;
pub use entity_builder::EntityBuilder;
pub use entity::Entity;
pub use system::System;
pub use world::World;

pub type Globals = AnyMap;