initial VoxelGame commit

This commit is contained in:
Simon Lübeß
2021-02-24 14:55:12 +01:00
parent 0461669e13
commit afc7594df9
8 changed files with 3730 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace Sandbox.VoxelFun
{
public struct VoxelChunk
{
public const int SizeX = 16;
public const int SizeY = 256;
public const int SizeZ = 16;
public uint8[SizeX][SizeY][SizeZ] Data;
}
}