https://github.com/irishbruse/raylibsharp
.NET 8 Aot compatible safe Raylib Bindings
https://github.com/irishbruse/raylibsharp
aot-compilation bindings dotnet-8 raylib safe
Last synced: 7 months ago
JSON representation
.NET 8 Aot compatible safe Raylib Bindings
- Host: GitHub
- URL: https://github.com/irishbruse/raylibsharp
- Owner: IrishBruse
- Created: 2023-06-25T23:51:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-22T04:22:19.000Z (over 1 year ago)
- Last Synced: 2025-03-20T21:19:09.638Z (7 months ago)
- Topics: aot-compilation, bindings, dotnet-8, raylib, safe
- Language: C#
- Homepage:
- Size: 31.1 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README

# Raylib Sharp
Raylib sharp is a safe partially autogenerated binding to raylib
## Features
- XML documentation for intellisense
## Wasm Support
Run using these commands
```shell
dotnet publish
dotnet serve --directory "./bin/Debug/net8.0/browser-wasm/AppBundle/" -p 42069
```## Icon Support
RaylibSharp supports a very simple way of adding icons to the application
Add an EmbeddedResource to use a custom Icon, if none is specified the default RaylibSharp [Icon](Icon.png) is used
```xml
```
## Examples
Examples generated from raylib git version `70286c7cdc6d972c63704ad957c18065f6a44cfe`
### References
- [DotnetRaylibWasm](https://github.com/disketteman/DotnetRaylibWasm/)
- [Raylib-CsLo](https://github.com/NotNotTech/Raylib-CsLo)
- [Raylib-cs](https://github.com/ChrisDill/Raylib-cs)