Files
voxel/Blocks.cs
2025-09-02 13:36:14 +02:00

24 lines
367 B
C#

namespace Voxel
{
public enum Blocks : byte
{
Air = 0,
Stone = 1,
}
public enum Orientation : uint
{
West = 0, // + X
East = 1, // - X
Top = 2, // + Y
Bottom = 3,// - Y
North = 4, // + Z
South = 5, // - Z
}
public enum Texture : uint
{
Stone = 1
}
}