├── .gitignore ├── LICENSE ├── README.md ├── ecs.c ├── ecs.h └── example.c /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyinorbit/pd-ecs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyinorbit/pd-ecs/HEAD/README.md -------------------------------------------------------------------------------- /ecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyinorbit/pd-ecs/HEAD/ecs.c -------------------------------------------------------------------------------- /ecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyinorbit/pd-ecs/HEAD/ecs.h -------------------------------------------------------------------------------- /example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amyinorbit/pd-ecs/HEAD/example.c --------------------------------------------------------------------------------