mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
Update README.md
This commit is contained in:
parent
bcdf8cec5b
commit
8f4b5feb71
27
README.md
27
README.md
@ -49,26 +49,25 @@ the command won't work.
|
|||||||
```csharp
|
```csharp
|
||||||
using Raylib_cs;
|
using Raylib_cs;
|
||||||
|
|
||||||
namespace HelloWorld
|
namespace HelloWorld;
|
||||||
|
|
||||||
|
class Program
|
||||||
{
|
{
|
||||||
static class Program
|
public static void Main()
|
||||||
{
|
{
|
||||||
public static void Main()
|
Raylib.InitWindow(800, 480, "Hello World");
|
||||||
|
|
||||||
|
while (!Raylib.WindowShouldClose())
|
||||||
{
|
{
|
||||||
Raylib.InitWindow(800, 480, "Hello World");
|
Raylib.BeginDrawing();
|
||||||
|
Raylib.ClearBackground(Color.WHITE);
|
||||||
|
|
||||||
while (!Raylib.WindowShouldClose())
|
Raylib.DrawText("Hello, world!", 12, 12, 20, Color.BLACK);
|
||||||
{
|
|
||||||
Raylib.BeginDrawing();
|
|
||||||
Raylib.ClearBackground(Color.WHITE);
|
|
||||||
|
|
||||||
Raylib.DrawText("Hello, world!", 12, 12, 20, Color.BLACK);
|
Raylib.EndDrawing();
|
||||||
|
|
||||||
Raylib.EndDrawing();
|
|
||||||
}
|
|
||||||
|
|
||||||
Raylib.CloseWindow();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Raylib.CloseWindow();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user