TrueCraft/TrueCraft.API/BlockFace.cs

14 lines
217 B
C#
Raw Normal View History

2014-12-28 20:13:23 -07:00
using System;
2014-12-26 22:35:26 -07:00
2014-12-28 20:13:23 -07:00
namespace TrueCraft.API
2014-12-26 22:35:26 -07:00
{
2014-12-28 20:13:23 -07:00
public enum BlockFace
2014-12-26 22:35:26 -07:00
{
NegativeY = 0,
PositiveY = 1,
NegativeZ = 2,
PositiveZ = 3,
NegativeX = 4,
2014-12-28 20:13:23 -07:00
PositiveX = 5
2014-12-26 22:35:26 -07:00
}
2014-12-28 20:13:23 -07:00
}