├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── README.md ├── ecs.h ├── ecs_flatset.h ├── example.cpp └── union_set.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BasGeertsema/ecsos/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | *sublime* 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BasGeertsema/ecsos/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BasGeertsema/ecsos/HEAD/README.md -------------------------------------------------------------------------------- /ecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BasGeertsema/ecsos/HEAD/ecs.h -------------------------------------------------------------------------------- /ecs_flatset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BasGeertsema/ecsos/HEAD/ecs_flatset.h -------------------------------------------------------------------------------- /example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BasGeertsema/ecsos/HEAD/example.cpp -------------------------------------------------------------------------------- /union_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BasGeertsema/ecsos/HEAD/union_set.h --------------------------------------------------------------------------------