mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-05 11:19:39 -04:00
Updated README.md.
- Made support information clearer. - Updated Hello World example. - Fixed LICENSE link.
This commit is contained in:
parent
b31b484564
commit
06d092d462
17
README.md
17
README.md
@ -11,8 +11,6 @@ C# bindings for raylib 3.0, a simple and easy-to-use library to learn videogames
|
|||||||
|
|
||||||
[](https://discord.gg/VkzNHUE)
|
[](https://discord.gg/VkzNHUE)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Installation - NuGet
|
## Installation - NuGet
|
||||||
|
|
||||||
This is the prefered method to get started - The package is still new so please report any [issues](https://github.com/ChrisDill/Raylib-cs/issues).
|
This is the prefered method to get started - The package is still new so please report any [issues](https://github.com/ChrisDill/Raylib-cs/issues).
|
||||||
@ -23,8 +21,8 @@ dotnet add package Raylib-cs --version 3.1.5
|
|||||||
|
|
||||||
[](https://www.nuget.org/packages/Raylib-cs/)
|
[](https://www.nuget.org/packages/Raylib-cs/)
|
||||||
|
|
||||||
|
Currently supports netstandard2.0 and netcore3.1.
|
||||||
Currently supported are netstandard2.0 (which should include Framework 4.7.2+) and netcore3.1
|
There is also some support for Framework 4.7.2+ although it is experimental.
|
||||||
|
|
||||||
If you need to edit Raylib-cs source then you will need to add the bindings as a project (see below).
|
If you need to edit Raylib-cs source then you will need to add the bindings as a project (see below).
|
||||||
|
|
||||||
@ -45,8 +43,10 @@ If you need to edit Raylib-cs source then you will need to add the bindings as a
|
|||||||
```csharp
|
```csharp
|
||||||
using Raylib_cs;
|
using Raylib_cs;
|
||||||
|
|
||||||
static class Program
|
namespace HelloWorld
|
||||||
{
|
{
|
||||||
|
static class Program
|
||||||
|
{
|
||||||
public static void Main()
|
public static void Main()
|
||||||
{
|
{
|
||||||
Raylib.InitWindow(800, 480, "Hello World");
|
Raylib.InitWindow(800, 480, "Hello World");
|
||||||
@ -63,16 +63,17 @@ static class Program
|
|||||||
|
|
||||||
Raylib.CloseWindow();
|
Raylib.CloseWindow();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Physac-cs and Raygui-cs
|
## Physac-cs and Raygui-cs
|
||||||
|
|
||||||
These are unfinished EXPERIMENTAL bindings to physac and raygui. They were initially added as a test to Raylib-cs but caused confusion and issues in project setup so they were moved into their own libraries Physac-cs and Raygui-cs that depend on Raylib-cs.
|
These are unfinished EXPERIMENTAL bindings to physac and raygui. Added as a test to Raylib-cs but caused confusion in project setup so they were moved into their own libraries.
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
The Examples for Raylib-cs have moved and can be found at [Raylib-cs-Examples](https://github.com/ChrisDill/Raylib-cs-Examples).
|
The Examples for Raylib-cs were moved and can be found at [Raylib-cs-Examples](https://github.com/ChrisDill/Raylib-cs-Examples).
|
||||||
|
|
||||||
## Tech notes
|
## Tech notes
|
||||||
|
|
||||||
@ -96,4 +97,4 @@ If you want to [request features](https://github.com/raysan5/raylib/pulls) or [r
|
|||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
raylib-cs (and raylib) is 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](LICENSE.md) for further details.
|
See [LICENSE](LICENSE) for details.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user