mirror of
https://github.com/Starpelly/raylib-beef.git
synced 2025-03-15 13:20:03 +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**.
|
BeefLang bindings for **Raylib 4.5**.
|
||||||
|
|
||||||
> **Note**: These bindings are still in development. Bugs and changes may occur.
|
> **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.
|
||||||
|
|
||||||
> 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
|
## Example
|
||||||
```cs
|
```cs
|
||||||
|
@ -21,6 +19,7 @@ class Program
|
||||||
public static int Main(String[] args)
|
public static int Main(String[] args)
|
||||||
{
|
{
|
||||||
InitWindow(800, 600, "Raylib Beef 4.5");
|
InitWindow(800, 600, "Raylib Beef 4.5");
|
||||||
|
InitAudioDevice();
|
||||||
|
|
||||||
var beefMain = Color(165, 47, 78, 255);
|
var beefMain = Color(165, 47, 78, 255);
|
||||||
var beefOutline = Color(243, 157, 157, 255);
|
var beefOutline = Color(243, 157, 157, 255);
|
||||||
|
@ -47,6 +46,8 @@ class Program
|
||||||
|
|
||||||
EndDrawing();
|
EndDrawing();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CloseAudioDevice();
|
||||||
CloseWindow();
|
CloseWindow();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue