Add project files.

This commit is contained in:
maxwes08
2025-08-26 16:00:58 +02:00
parent 3c864f793b
commit 1d062528aa
8 changed files with 270 additions and 0 deletions

14
Program.cs Normal file
View File

@@ -0,0 +1,14 @@
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();
}
}