Files
voxel/Program.cs
2025-08-26 16:00:58 +02:00

14 lines
260 B
C#

using Voxel;
internal class Program
{
private static void Main(string[] args)
{
int sizeX = 800;
int sizeY = 600;
string title = "Game";
Window window = new Window(sizeX, sizeY, title);
window.Run();
}
}