Entity-Component-System
npm install ecs.js
let app = new App();
class Foo extends Component {}
class FooSystem extends System {}
app.registerClass('Foo', Foo);
app.registerSystem('foo.sys', FooSystem, 'Foo');
let ent = app.createEntity();
ent.addComp('Foo');
app.tick();
TODO
MIT © 2017 Johnny Wu