DCES

DCES is a library that provides a variant of the Entity Component System: https://en.wikipedia.org/wiki/Entity–component–system.

Features:

The library is still WIP. API changes are possible.

MIT licensed

Example

```rust extern crate dces; use dces::prelude::*;

struct Name { value: String }

struct PrintSystem;

impl System for PrintSystem { fn run(&self, entities: &Vec, ecm: &mut EntityComponentManager) { for entity in entities { if let Ok(comp) = ecm.borrow_component::(*entity) { println!("{}", comp.value); } } } }

fn main() { let mut world = World::new();

 world.create_entity().with(Name { value: String::from("DCES") }).build();
 world.create_system(PrintSystem).build();

 world.run();

} ```

Future features

World

ECM: Entity Component Manager (singelton)

ES: Entity System (0..n)

Inspirations