├── .gitignore ├── README.md ├── api.md ├── bench ├── build │ ├── bundle.js │ └── index.html ├── suite.js └── webpack.config.js ├── doc-templates ├── header.hbs ├── scope.hbs └── separator.hbs ├── package.json ├── src ├── ECS.js └── dataStore.js └── test ├── base.js ├── components.js ├── dataStore.js ├── events.js └── multi.js /.gitignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | node_modules 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/ent-comp/HEAD/README.md -------------------------------------------------------------------------------- /api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/ent-comp/HEAD/api.md -------------------------------------------------------------------------------- /bench/build/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/ent-comp/HEAD/bench/build/bundle.js -------------------------------------------------------------------------------- /bench/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/ent-comp/HEAD/bench/build/index.html -------------------------------------------------------------------------------- /bench/suite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/ent-comp/HEAD/bench/suite.js -------------------------------------------------------------------------------- /bench/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/ent-comp/HEAD/bench/webpack.config.js -------------------------------------------------------------------------------- /doc-templates/header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/ent-comp/HEAD/doc-templates/header.hbs -------------------------------------------------------------------------------- /doc-templates/scope.hbs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc-templates/separator.hbs: -------------------------------------------------------------------------------- 1 | ---- 2 | 3 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/ent-comp/HEAD/package.json -------------------------------------------------------------------------------- /src/ECS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/ent-comp/HEAD/src/ECS.js -------------------------------------------------------------------------------- /src/dataStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/ent-comp/HEAD/src/dataStore.js -------------------------------------------------------------------------------- /test/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/ent-comp/HEAD/test/base.js -------------------------------------------------------------------------------- /test/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/ent-comp/HEAD/test/components.js -------------------------------------------------------------------------------- /test/dataStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/ent-comp/HEAD/test/dataStore.js -------------------------------------------------------------------------------- /test/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/ent-comp/HEAD/test/events.js -------------------------------------------------------------------------------- /test/multi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenomas/ent-comp/HEAD/test/multi.js --------------------------------------------------------------------------------