├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── launch.json ├── settings.json └── tasks.json ├── README.md ├── extras └── README.md ├── game ├── include │ └── game.h ├── premake5.lua └── src │ ├── main.cpp │ ├── raylib.ico │ └── raylib.rc ├── premake-VisualStudio.bat ├── premake-mingw.bat ├── premake5 ├── premake5.exe ├── premake5.lua ├── premake5.osx ├── raylib_premake5.lua ├── resources ├── LICENSE ├── ambient.ogg ├── coin.wav └── mecha.png └── staticLib ├── include └── lib.h ├── premake5.lua └── src └── lib.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/README.md -------------------------------------------------------------------------------- /extras/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/extras/README.md -------------------------------------------------------------------------------- /game/include/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/game/include/game.h -------------------------------------------------------------------------------- /game/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/game/premake5.lua -------------------------------------------------------------------------------- /game/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/game/src/main.cpp -------------------------------------------------------------------------------- /game/src/raylib.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/game/src/raylib.ico -------------------------------------------------------------------------------- /game/src/raylib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/game/src/raylib.rc -------------------------------------------------------------------------------- /premake-VisualStudio.bat: -------------------------------------------------------------------------------- 1 | premake5.exe vs2022 || pause 2 | -------------------------------------------------------------------------------- /premake-mingw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/premake-mingw.bat -------------------------------------------------------------------------------- /premake5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/premake5 -------------------------------------------------------------------------------- /premake5.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/premake5.exe -------------------------------------------------------------------------------- /premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/premake5.lua -------------------------------------------------------------------------------- /premake5.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/premake5.osx -------------------------------------------------------------------------------- /raylib_premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/raylib_premake5.lua -------------------------------------------------------------------------------- /resources/LICENSE: -------------------------------------------------------------------------------- 1 | Assets license. 2 | -------------------------------------------------------------------------------- /resources/ambient.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/resources/ambient.ogg -------------------------------------------------------------------------------- /resources/coin.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/resources/coin.wav -------------------------------------------------------------------------------- /resources/mecha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/resources/mecha.png -------------------------------------------------------------------------------- /staticLib/include/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/staticLib/include/lib.h -------------------------------------------------------------------------------- /staticLib/premake5.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/staticLib/premake5.lua -------------------------------------------------------------------------------- /staticLib/src/lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raylib-extras/game-premake/HEAD/staticLib/src/lib.cpp --------------------------------------------------------------------------------