├── .gitignore ├── LICENSE ├── README.md ├── ecs └── ecs.h ├── game ├── include │ ├── test_components.h │ └── test_systems.h ├── premake5.lua └── src │ ├── main.cpp │ └── test_systems.cpp ├── premake-VisualStudio.bat ├── premake-mingw.bat ├── premake5 ├── premake5.exe ├── premake5.lua ├── premake5.osx ├── raylib_premake5.lua └── resources ├── LICENSE ├── ambient.ogg ├── coin.wav └── mecha.png /.gitignore: -------------------------------------------------------------------------------- 1 | raylib-master 2 | _build 3 | _bin 4 | .vs 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/README.md -------------------------------------------------------------------------------- /ecs/ecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/ecs/ecs.h -------------------------------------------------------------------------------- /game/include/test_components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/game/include/test_components.h -------------------------------------------------------------------------------- /game/include/test_systems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/game/include/test_systems.h -------------------------------------------------------------------------------- /game/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/game/premake5.lua -------------------------------------------------------------------------------- /game/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/game/src/main.cpp -------------------------------------------------------------------------------- /game/src/test_systems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/game/src/test_systems.cpp -------------------------------------------------------------------------------- /premake-VisualStudio.bat: -------------------------------------------------------------------------------- 1 | premake5.exe vs2022 || pause 2 | -------------------------------------------------------------------------------- /premake-mingw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/premake-mingw.bat -------------------------------------------------------------------------------- /premake5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/premake5 -------------------------------------------------------------------------------- /premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/premake5.exe -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/premake5.lua -------------------------------------------------------------------------------- /premake5.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/premake5.osx -------------------------------------------------------------------------------- /raylib_premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/raylib_premake5.lua -------------------------------------------------------------------------------- /resources/LICENSE: -------------------------------------------------------------------------------- 1 | Assets license. 2 | -------------------------------------------------------------------------------- /resources/ambient.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/resources/ambient.ogg -------------------------------------------------------------------------------- /resources/coin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/resources/coin.wav -------------------------------------------------------------------------------- /resources/mecha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/simple_ecs/HEAD/resources/mecha.png --------------------------------------------------------------------------------