Files
voxel/Program.cs
Max Westerlund 71c5f3a3aa update
2025-09-02 13:17:15 +02:00

19 lines
373 B
C#

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