2017-01-20 09:12:04 +11:00
|
|
|
|
// Copyright 2014-2017 ClassicalSharp | Licensed under BSD-3
|
2016-05-11 17:10:16 +10:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace ClassicalSharp {
|
|
|
|
|
|
2016-06-11 18:38:20 +10:00
|
|
|
|
/// <summary> Integer constants for the six sides of a block. </summary>
|
2016-05-11 17:10:16 +10:00
|
|
|
|
public static class Side {
|
|
|
|
|
/// <summary> Face X = 0. </summary>
|
|
|
|
|
public const int Left = 0;
|
|
|
|
|
/// <summary> Face X = 1. </summary>
|
|
|
|
|
public const int Right = 1;
|
|
|
|
|
/// <summary> Face Z = 0. </summary>
|
|
|
|
|
public const int Front = 2;
|
|
|
|
|
/// <summary> Face Z = 1. </summary>
|
|
|
|
|
public const int Back = 3;
|
|
|
|
|
/// <summary> Face Y = 0. </summary>
|
|
|
|
|
public const int Bottom = 4;
|
|
|
|
|
/// <summary> Face Y = 1. </summary>
|
|
|
|
|
public const int Top = 5;
|
|
|
|
|
/// <summary> Number of sides on a cube. </summary>
|
|
|
|
|
public const int Sides = 6;
|
|
|
|
|
}
|
|
|
|
|
}
|