mirror of
https://github.com/eliasstepanik/2DEngine.git
synced 2026-01-11 13:08:27 +00:00
13 lines
266 B
C#
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();
|
|
} |