This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
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
}
}