using System; namespace TrueCraft.API { /// /// Enumerates the directions of block faces. /// public enum BlockFace { /// /// The block face points towards -Y. /// NegativeY = 0, /// /// The block face points towards +Y. /// PositiveY = 1, /// /// The block face points towards -Z. /// NegativeZ = 2, /// /// The block face points towards +Z. /// PositiveZ = 3, /// /// The block face points towards -X. /// NegativeX = 4, /// /// The block face points towards +X. /// PositiveX = 5 } }