2DEngine/RaylibTest/Program.cs
2022-07-17 19:21:58 +02:00

13 lines
266 B
C#

using Raylib_cs;
using RaylibTest;
Game game = new Game(1024, 768, "Raylib Game Template", 60);
game.Start();
while (!Raylib.WindowShouldClose())
{
Raylib.BeginDrawing();
Raylib.ClearBackground(Color.WHITE);
game.Update();
Raylib.EndDrawing();
}