├── .github └── workflows │ ├── linux.yml │ ├── macos.yml │ ├── webassembly.yml │ └── windows.yml ├── .gitignore ├── CMakeLists.txt ├── CONVENTIONS.md ├── LICENSE ├── README.md ├── projects └── VS2022 │ ├── raylib │ └── raylib.vcxproj │ ├── raylib_game.sln │ └── raylib_game │ └── raylib_game.vcxproj ├── screenshots └── screenshot000.png └── src ├── CMakeLists.txt ├── Info.plist ├── Makefile ├── Makefile.Android ├── minshell.html ├── raylib.icns ├── raylib.ico ├── raylib_game.c ├── raylib_game.rc └── resources └── README.txt /.github/workflows/linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/.github/workflows/linux.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/webassembly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/.github/workflows/webassembly.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONVENTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/CONVENTIONS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/README.md -------------------------------------------------------------------------------- /projects/VS2022/raylib/raylib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/projects/VS2022/raylib/raylib.vcxproj -------------------------------------------------------------------------------- /projects/VS2022/raylib_game.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/projects/VS2022/raylib_game.sln -------------------------------------------------------------------------------- /projects/VS2022/raylib_game/raylib_game.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/projects/VS2022/raylib_game/raylib_game.vcxproj -------------------------------------------------------------------------------- /screenshots/screenshot000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/screenshots/screenshot000.png -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/src/Info.plist -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.Android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/src/Makefile.Android -------------------------------------------------------------------------------- /src/minshell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/src/minshell.html -------------------------------------------------------------------------------- /src/raylib.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/src/raylib.icns -------------------------------------------------------------------------------- /src/raylib.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/src/raylib.ico -------------------------------------------------------------------------------- /src/raylib_game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/src/raylib_game.c -------------------------------------------------------------------------------- /src/raylib_game.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raysan5/raylib-gamejam-template/HEAD/src/raylib_game.rc -------------------------------------------------------------------------------- /src/resources/README.txt: -------------------------------------------------------------------------------- 1 | Place in this folder your game assets/resources! 2 | 3 | --------------------------------------------------------------------------------