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:
parent
98dcce501f
commit
1168407f09
15
README.md
15
README.md
@ -7,11 +7,9 @@ C# bindings for raylib 2.0, a simple and easy-to-use library to learn videogames
|
|||||||
## Installation
|
## Installation
|
||||||
So far, I have only tested on Windows. Tips on making things work smoothly on all platforms is appreciated.
|
So far, I have only tested on Windows. Tips on making things work smoothly on all platforms is appreciated.
|
||||||
|
|
||||||
Use the [nuget package](https://www.nuget.org/packages/Raylib-cs/) or install manually from this repo.
|
1. Add the [nuget package](https://www.nuget.org/packages/Raylib-cs/)
|
||||||
|
|
||||||
Look at the Examples and Test projects for reference.
|
2. Start coding!
|
||||||
|
|
||||||
Enjoy!
|
|
||||||
|
|
||||||
```csharp
|
```csharp
|
||||||
using Raylib;
|
using Raylib;
|
||||||
@ -21,7 +19,7 @@ static class Program
|
|||||||
{
|
{
|
||||||
public static void Main()
|
public static void Main()
|
||||||
{
|
{
|
||||||
InitWindow(640, 480, "Raylib-cs");
|
InitWindow(640, 480, "Hello World");
|
||||||
|
|
||||||
while (!WindowShouldClose())
|
while (!WindowShouldClose())
|
||||||
{
|
{
|
||||||
@ -32,17 +30,16 @@ static class Program
|
|||||||
|
|
||||||
EndDrawing();
|
EndDrawing();
|
||||||
}
|
}
|
||||||
|
|
||||||
CloseWindow();
|
CloseWindow();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Custom build
|
## Custom build
|
||||||
Gives access to extra modules from C#.
|
If you need to build raylib yourself these are the current changes required.
|
||||||
|
|
||||||
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 file with the following
|
||||||
```c
|
```c
|
||||||
#include "raylib.h"
|
#include "raylib.h"
|
||||||
#include "easings.h"
|
#include "easings.h"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user