TrueCraft/TrueCraft.API/BlockFace.cs
2014-12-28 20:13:23 -07:00

14 lines
217 B
C#

using System;
namespace TrueCraft.API
{
public enum BlockFace
{
NegativeY = 0,
PositiveY = 1,
NegativeZ = 2,
PositiveZ = 3,
NegativeX = 4,
PositiveX = 5
}
}