From 3b21284b5fa8409747fe7373c5b4ddf451fbcfb7 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Fri, 12 Oct 2018 09:08:09 +0100 Subject: [PATCH] Custom build instructions --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 328dfee..2a2955c 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,23 @@ static class Program } ``` +## Custom build +Raylib-cs uses a custom build for raylib to give access to some features that are not accessible by default. + +1. Add [raygui](https://github.com/raysan5/raygui) +2. Add a C file with the following +``` +#include "raylib.h" +#include "easings.h" + +#define PHYSAC_NO_THREADS +#define PHYSAC_IMPLEMENTATION +#include "physac.h" + +#define RAYGUI_IMPLEMENTATION +#include "raygui.h" +``` + ## Contributing If you have any ideas, feel free to open an issue and tell me what you think. If you'd like to contribute, please fork the repository and make changes as