19 lines
373 B
C#
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();
|
|
}
|
|
} |