ecs-rs 0.1.2

A super-simple entity-component system in Rust
1
2
3
4
5
6
7
8
9
10
#![feature(reflect_marker)]
#![feature(get_type_id)]

#[macro_use]
mod macros;
mod heterogenous_set;

pub mod entity;
pub mod components;
pub mod system;