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

23
ChunkMesh.cs Normal file
View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Voxel
{
public class ChunkMesh
{
private List<FaceData> _faces;
public ChunkMesh(Chunk chunk)
{
_faces = new List<FaceData>();
}
private void MeshBlock(int i)
{
}
}
}