20 lines
396 B
C#
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
|
|
}
|
|
} |