DISCLAIMER:
Welcome to raylib game template!
This template provides a base structure to start developing a small raylib game in plain C. The repo is also pre-configured with a default LICENSE
(zlib/libpng) and a README.md
(this one) to be properly filled by users. Feel free to change the LICENSE as required.
All the sections defined by $(Data to Fill)
are expected to be edited and filled properly. It's recommended to delete this disclaimer message after editing this README.md
file.
This template has been created to be used with raylib (www.raylib.com) and it's licensed under an unmodified zlib/libpng license.
Copyright (c) 2014-2024 Ramon Santamaria (@raysan5)
You can use this templates in some ways. Using Visual Studio, using CMake or make your own build setup. This repository come with Visual Studio and CMake already setuped.
Chose one of the follow setup, that fit in you development enviroment.
raylib-game-template
should exist in the same directory as raylib
itself. So your file structure should look like this:
raylib
raylib-game-template
README.md
and all other raylib-game-template filesraylib_game
in the solution explorer, then in the toolbar at the top, click Project
> Set as Startup Project
Local Windows Debugger
with the green play arrow and the project will run.cmake -S . -B build
if you want with debug symbols put the flag
-DCMAKE_BUILD_TYPE=Debug
cmake --build build
Inside the build folder are another folder (named the same as the project name on CMakeLists.txt) with the executable and resources folder.
In order for resources to load properly, cd to src
and run the executable (../build/${PROJECT_NAME}/${PROJECT_NAME}
) from there.
cmake will automatically download a current release of raylib but if you want to use your local version you can pass -DFETCHCONTENT_SOURCE_DIR_RAYLIB=<dir_with_raylib>
$(Your Game Description)
Keyboard:
TODO: Show your game to the world, animated GIFs recommended!.
This game sources are licensed under an unmodified zlib/libpng license, which is an OSI-certified, BSD-like license that allows static linking with closed source software. Check LICENSE for further details.
$(Additional Licenses)
Copyright (c) $(Year) $(User Name) ($(User Twitter/GitHub Name))