// ClassicalSharp copyright 2014-2016 UnknownShadow200 | Licensed under MIT
using System;
namespace ClassicalSharp {
/// Integer constants for the six tile sides of a block.
public static class Side {
/// Face X = 0.
public const int Left = 0;
/// Face X = 1.
public const int Right = 1;
/// Face Z = 0.
public const int Front = 2;
/// Face Z = 1.
public const int Back = 3;
/// Face Y = 0.
public const int Bottom = 4;
/// Face Y = 1.
public const int Top = 5;
/// Number of sides on a cube.
public const int Sides = 6;
}
}