mirror of
https://github.com/eliasstepanik/FluidSimulation.git
synced 2026-01-11 13:38:28 +00:00
23 lines
476 B
C#
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();
|
|
} |