2022-10-25 13:32:10 +02:00

23 lines
476 B
C#

using System.Diagnostics.SymbolStore;
using System.Drawing;
using System.Numerics;
using System.Security.Cryptography.X509Certificates;
using static Raylib_CsLo.Raylib;
using static Raylib_CsLo.RayMath;
using static Raylib_CsLo.RayGui;
using System.Drawing;
using PixelEngine;
using Raylib_CsLo;
Game game = new Game();
game.PMouse = GetMousePosition();
game.Start();
while (!WindowShouldClose())
{
game.HandleInput();
game.UpdateSim();
game.UpdateDraw();
}