NBTExplorer/SubstrateCS/Source/World.cs

33 lines
810 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using Substrate.Core;
2011-06-30 04:41:29 +00:00
using Substrate.Nbt;
2011-04-06 21:20:35 +00:00
namespace Substrate
{
/// <summary>
/// A collection of constants to specify different Minecraft world dimensions.
/// </summary>
public static class Dimension
{
/// <summary>
/// Specifies the Nether dimension.
/// </summary>
public const int NETHER = -1;
/// <summary>
/// Specifies the default overworld.
/// </summary>
public const int DEFAULT = 0;
/// <summary>
/// Specifies the Enderman dimension, The End.
/// </summary>
public const int THE_END = 1;
}
public class DimensionNotFoundException : Exception { }
}