Raylib-cs.BleedingEdge.Runtimes 5.5.0-dev-80

This is a prerelease version of Raylib-cs.BleedingEdge.Runtimes.
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Raylib-cs.BleedingEdge.Runtimes --version 5.5.0-dev-80
                    
NuGet\Install-Package Raylib-cs.BleedingEdge.Runtimes -Version 5.5.0-dev-80
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Raylib-cs.BleedingEdge.Runtimes" Version="5.5.0-dev-80" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Raylib-cs.BleedingEdge.Runtimes" Version="5.5.0-dev-80" />
                    
Directory.Packages.props
<PackageReference Include="Raylib-cs.BleedingEdge.Runtimes" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Raylib-cs.BleedingEdge.Runtimes --version 5.5.0-dev-80
                    
#r "nuget: Raylib-cs.BleedingEdge.Runtimes, 5.5.0-dev-80"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Raylib-cs.BleedingEdge.Runtimes@5.5.0-dev-80
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Raylib-cs.BleedingEdge.Runtimes&version=5.5.0-dev-80&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Raylib-cs.BleedingEdge.Runtimes&version=5.5.0-dev-80&prerelease
                    
Install as a Cake Tool

logo

Raylib-cs.BleedingEdge

C# bindings for raylib, a simple and easy-to-use library to learn videogames programming (www.raylib.com)

NuGet Downloads GitHub License Discord GitHub Repo stars GitHub commit activity GitHub Actions Workflow Status


Raylib-cs.BleedingEdge targets .NET 8+ and uses the master branch of raylib repo

To see examples, you can reference the Raylib-cs examples as this binding has mostly same function signatures (see API differences)

installation

You will need to install the following NuGet packages:

  • Raylib-cs.BleedingEdge
    • Features only binding for raylib, without prebuilt natives. Requires manually compiled raylib
    • NuGet package
  • Raylib-cs.BleedingEdge.Runtimes
    • Features shared library natives that are located near the executable when you build your project.
    • NuGet package

If you need only prebuilt raylib library natives, you can just install Raylib-cs.BleedingEdge.Runtimes

If you want to customize raylib, you need to copy CompileNatives.props to your project files and add <Import Project="CompileNatives.props"> to your project file (.csproj)

If you want to compile a static library, add <CompileShared>false</CompileShared> in your project file's PropertyGroup

If you need static library, go to GitHub Actions, open the latest build (top most) and download RID-static artifact

You will need GitHub account to download artifacts

basic example

using Raylib_cs.BleedingEdge;
using static Raylib_cs.BleedingEdge.Raylib;

const int screenWidth = 800;
const int screenHeight = 540;

InitWindow(screenWidth, screenHeight, "raylib [core] example - basic window");

while (!WindowShouldClose())
{
    BeginDrawing();
    ClearBackground(Color.RayWhite);
    
    DrawText("Congrats! You created your first window!", 190, 200, 20, Color.LightGray);
    
    EndDrawing();
}

CloseWindow();

differences from Raylib-cs

main differences

Raylib-cs Raylib-cs.BleedingEdge
.NET 6.0+ .NET 8.0+
Released 07-2018 Released 08-2024
raylib 5.0 raylib 5.5-dev (master)

API differences

There are minor enum value name differences, such as WindowHighDpi instead of HighDpiWindow, KbMenu instead of KeyboardMenu. Enum value names in this binding are same as in raylib, but renamed to match PascalCase

Raylib-cs Raylib-cs.BleedingEdge
using Raylib-cs using Raylib-cs.BleedingEdge
T[] for functions with pointers Span<T> for functions with pointers
int argument for the length of array -, use Span<T>.Slice if necessary
Utf8Buffer Utf8Handle
AudioCallback AudioMixedCallback
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • net8.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Raylib-cs.BleedingEdge.Runtimes:

Package Downloads
Vigilance

2D Game Engine

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
5.6.2-dev.211 124 9/18/2025
5.6.2-dev.210 125 9/18/2025
5.6.2-dev.209 136 9/17/2025
5.6.2-dev.208 96 9/13/2025
5.6.2-dev.207 62 9/12/2025
5.6.2-dev.206 115 9/5/2025
5.6.2-dev.201 123 8/20/2025
5.6.2-dev.200 117 8/18/2025
5.6.2-dev.199 122 8/13/2025
5.6.2-dev.198 121 8/12/2025
5.6.2-dev.197 199 8/5/2025
5.6.2-dev.196 144 8/4/2025
5.6.2-dev.195 22 8/2/2025
5.6.2-dev.194 28 8/1/2025
5.6.2-dev.189 96 7/30/2025
5.6.2-dev.188 210 7/26/2025
5.6.2-dev.186 390 7/21/2025
5.6.2-dev.185 39 7/19/2025
5.6.2-dev.184 116 7/15/2025
5.6.2-dev.183 113 7/15/2025
5.6.2-dev.182 113 7/14/2025
5.6.2-dev.181 123 7/9/2025
5.6.2-dev.180 119 7/2/2025
5.6.2-dev.179 75 6/27/2025
5.6.2-dev.178 132 6/23/2025
5.6.2-dev.177 50 6/21/2025
5.6.2-dev.176 124 6/17/2025
5.6.2-dev.175 123 6/17/2025
5.6.2-dev.174 128 6/2/2025
5.6.2-dev.173 86 5/31/2025
5.6.2-dev.172 126 5/28/2025
5.6.2-dev.171 133 5/19/2025
5.6.2-dev.170 150 5/16/2025
5.6.2-dev.168 162 5/16/2025
5.6.2-dev.167 199 5/12/2025
5.6.2-dev.166 110 5/9/2025
5.6.2-dev.165 133 5/5/2025
5.6.2-dev.162 118 4/27/2025
5.6.2-dev.61 117 4/27/2025
5.6.2-dev.60 87 2/25/2025
5.6.2-dev.59 80 2/23/2025
5.6.2-dev.58 72 2/21/2025
5.6.2-dev.57 77 2/20/2025
5.6.2-dev.56 81 2/14/2025
5.6.2-dev.55 81 2/13/2025
5.6.2-dev.54 81 2/1/2025
5.6.2-dev.53 75 1/31/2025
5.6.2-dev.52 78 1/28/2025
5.6.2-dev.51 71 1/28/2025
5.6.2-dev.50 68 1/28/2025
5.6.2-dev.45 76 1/27/2025
5.6.2-dev.44 73 1/25/2025
5.6.2-dev.43 65 1/24/2025
5.6.2-dev.42 67 1/22/2025
5.6.2-dev.41 67 1/19/2025
5.6.2-dev.40 65 1/16/2025
5.6.2-dev.39 60 1/16/2025
5.6.2-dev.38 66 1/13/2025
5.6.2-dev.37 75 1/10/2025
5.6.2-dev.36 50 1/9/2025
5.6.2-dev.35 59 1/8/2025
5.6.2-dev.34 96 1/3/2025
5.6.2-dev.33 90 12/31/2024
5.6.2-dev.32 76 12/26/2024
5.6.2-dev.31 80 12/24/2024
5.6.2-dev.30 76 12/23/2024
5.6.2-dev.29 78 12/21/2024
5.6.2-dev.28 74 12/21/2024
5.6.2-dev.27 84 12/20/2024
5.6.2-dev.26 74 12/18/2024
5.6.2-dev.25 76 12/18/2024
5.6.2-dev.24 94 12/8/2024
5.6.2-dev.23 70 12/8/2024
5.6.2-dev.22 88 12/5/2024
5.6.2-dev.21 77 12/3/2024
5.6.2-dev.20 72 12/2/2024
5.6.2-dev.19 83 11/29/2024
5.6.2-dev.18 89 11/22/2024
5.5.2-dev.17 77 11/20/2024
5.5.2-dev.16 74 11/20/2024
5.5.1-dev-9 82 11/4/2024
5.5.1-dev-8 76 10/29/2024
5.5.1-dev-7 80 10/28/2024
5.5.1-dev-6 75 10/25/2024
5.5.1-dev-5 68 10/24/2024
5.5.1-dev-4 68 10/24/2024
5.5.1-dev-3 74 10/24/2024
5.5.1-dev-14 67 11/20/2024
5.5.1-dev-13 71 11/20/2024
5.5.1-dev-12 68 11/18/2024
5.5.1-dev-11 67 11/18/2024
5.5.1-dev-10 72 11/18/2024
5.5.1-dev.15 71 11/20/2024
5.5.0-dev-94 79 10/23/2024
5.5.0-dev-92 71 10/23/2024
5.5.0-dev-87 75 10/23/2024
5.5.0-dev-86 59 10/22/2024
5.5.0-dev-85 72 10/22/2024
5.5.0-dev-84 64 10/22/2024
5.5.0-dev-83 108 10/18/2024
5.5.0-dev-82 65 10/17/2024
5.5.0-dev-81 79 10/16/2024
5.5.0-dev-80 78 10/16/2024
5.5.0-dev-79 75 10/16/2024
5.5.0-dev-68 71 10/15/2024
5.5.0-dev-67 89 10/10/2024
5.5.0-dev-66 74 10/9/2024
5.5.0-dev-65 74 10/4/2024
5.5.0-dev-63 71 10/2/2024
5.5.0-dev-62 78 10/1/2024
5.5.0-dev-61 77 9/28/2024
5.5.0-dev-60 78 9/27/2024
5.5.0-dev-59 77 9/23/2024
5.5.0-dev-58 78 9/22/2024
5.5.0-dev-57 74 9/20/2024
5.5.0-dev-55 98 9/16/2024
5.5.0-dev-54 80 9/16/2024
5.5.0-dev-53 78 9/16/2024
5.5.0-dev-52 92 9/15/2024
5.5.0-dev-51 84 9/13/2024
5.5.0-dev-50 77 8/29/2024
5.5.0-dev-49 80 8/27/2024
5.5.0-dev-47 74 8/27/2024
5.5.0-dev-102 68 10/24/2024