2
0
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:
ChrisDill 2020-09-25 19:13:45 +01:00
parent b31b484564
commit 06d092d462

View File

@ -11,8 +11,6 @@ C# bindings for raylib 3.0, a simple and easy-to-use library to learn videogames
[![Chat on Discord](https://img.shields.io/discord/426912293134270465.svg?logo=discord)](https://discord.gg/VkzNHUE) [![Chat on Discord](https://img.shields.io/discord/426912293134270465.svg?logo=discord)](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
[![NuGet](https://img.shields.io/nuget/dt/raylib-cs)](https://www.nuget.org/packages/Raylib-cs/) [![NuGet](https://img.shields.io/nuget/dt/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,6 +43,8 @@ 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;
namespace HelloWorld
{
static class Program static class Program
{ {
public static void Main() public static void Main()
@ -64,15 +64,16 @@ 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.