2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-05 11:19:39 -04:00

Update README.md

This commit is contained in:
ChrisDill 2018-11-22 15:13:33 +00:00
parent 2e6a583193
commit 7c0eb670b5

View File

@ -4,18 +4,11 @@
C# bindings for raylib 2.0, a simple and easy-to-use library to learn videogames programming (www.raylib.com) C# bindings for raylib 2.0, a simple and easy-to-use library to learn videogames programming (www.raylib.com)
Bindings: ## Installation
* Easings So far, I have only tested on Windows. Tips on making things work smoothly on all platforms is appreciated.
* Physac
* Raygui
* Raylib
* Raymath
Currently the only difference to raylib is changing interger constants to enums. 1. Install from nuget package(coming soon)
For example KEY_ENTER becomes Key.ENTER. 2. Start coding!
## Usage
Run Build.bat in Examples folder. Currently requires mingw32-make and mono.
```csharp ```csharp
using Raylib; using Raylib;
@ -43,11 +36,11 @@ static class Program
``` ```
## Custom build ## Custom build
Raylib-cs uses a custom build for raylib to give access to some features that are not accessible by default. Gives access to extra modules so c# can use them.
1. Add [raygui](https://github.com/raysan5/raygui) 1. Add [raygui](https://github.com/raysan5/raygui)
2. Add a C file with the following 2. Add a c file with the following
``` ```c
#include "raylib.h" #include "raylib.h"
#include "easings.h" #include "easings.h"