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
2014-12-27 00:21:19 -07:00

10 lines
126 B
C#

using System;
namespace TrueCraft.API
{
public enum Dimension
{
Nether = -1,
Overworld = 0
}
}