mirror of
https://github.com/Starpelly/raylib-beef.git
synced 2025-03-14 21:06:58 +01:00
Update README.md
This commit is contained in:
parent
2c634b8d92
commit
cae4f21354
1 changed files with 4 additions and 3 deletions
|
@ -4,9 +4,7 @@
|
|||
|
||||
BeefLang bindings for **Raylib 4.5**.
|
||||
|
||||
> **Note**: These bindings are still in development. Bugs and changes may occur.
|
||||
|
||||
> OS is limited to Windows right now, I see no reason why this wouldn't work on other platforms, though. I guess only one way to find out.
|
||||
> **Note**: OS is limited to Windows right now, I see no reason why this wouldn't work on other platforms, though. I guess only one way to find out.
|
||||
|
||||
## Example
|
||||
```cs
|
||||
|
@ -21,6 +19,7 @@ class Program
|
|||
public static int Main(String[] args)
|
||||
{
|
||||
InitWindow(800, 600, "Raylib Beef 4.5");
|
||||
InitAudioDevice();
|
||||
|
||||
var beefMain = Color(165, 47, 78, 255);
|
||||
var beefOutline = Color(243, 157, 157, 255);
|
||||
|
@ -47,6 +46,8 @@ class Program
|
|||
|
||||
EndDrawing();
|
||||
}
|
||||
|
||||
CloseAudioDevice();
|
||||
CloseWindow();
|
||||
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue