This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
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
}
}