This commit is contained in:
Max Westerlund
2025-09-02 13:17:15 +02:00
parent b6f9966eb9
commit 71c5f3a3aa
15 changed files with 618 additions and 37 deletions

View File

@@ -8,6 +8,11 @@ internal class Program
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();
}