NBTExplorer/Substrate/SubstrateCS/Source/World.cs

18 lines
356 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
{
public static class Dimension
{
public const int NETHER = -1;
public const int DEFAULT = 0;
}
public class DimensionNotFoundException : Exception { }
}