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