mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-06 13:11:53 +00:00
initial VoxelGame commit
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user