Update README.md

This commit is contained in:
Braedon Lewis 2023-09-15 13:06:41 -04:00 committed by GitHub
parent 2c634b8d92
commit cae4f21354
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;