TrueCraft/TrueCraft.API/Dimension.cs

20 lines
396 B
C#

using System;
namespace TrueCraft.API
{
/// <summary>
/// Enumerates the different dimensions in the world in TrueCraft.
/// </summary>
public enum Dimension
{
/// <summary>
/// The Nether dimension.
/// </summary>
Nether = -1,
/// <summary>
/// The Overworld dimension.
/// </summary>
Overworld = 0
}
}