├── .clang-format ├── .editorconfig ├── .gitignore ├── Makefile ├── README.md ├── ecs.c ├── ecs.h ├── greatest.h ├── imgs ├── benchmark.png └── graph.png └── main.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonliang-dev/entity-component-system/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonliang-dev/entity-component-system/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | ecs_test 3 | vgcore.* 4 | callgrind.* 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonliang-dev/entity-component-system/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonliang-dev/entity-component-system/HEAD/README.md -------------------------------------------------------------------------------- /ecs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonliang-dev/entity-component-system/HEAD/ecs.c -------------------------------------------------------------------------------- /ecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonliang-dev/entity-component-system/HEAD/ecs.h -------------------------------------------------------------------------------- /greatest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonliang-dev/entity-component-system/HEAD/greatest.h -------------------------------------------------------------------------------- /imgs/benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonliang-dev/entity-component-system/HEAD/imgs/benchmark.png -------------------------------------------------------------------------------- /imgs/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonliang-dev/entity-component-system/HEAD/imgs/graph.png -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonliang-dev/entity-component-system/HEAD/main.c --------------------------------------------------------------------------------