mirror of
https://github.com/ClassiCube/ClassiCube.git
synced 2025-01-24 01:52:24 -05:00
23 lines
No EOL
709 B
C#
23 lines
No EOL
709 B
C#
// Copyright 2014-2017 ClassicalSharp | Licensed under BSD-3
|
|
using System;
|
|
|
|
namespace ClassicalSharp {
|
|
|
|
/// <summary> Integer constants for the six sides of a block. </summary>
|
|
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;
|
|
}
|
|
} |