10 lines
126 B
C#
10 lines
126 B
C#
using System;
|
|
|
|
namespace TrueCraft.API
|
|
{
|
|
public enum Dimension
|
|
{
|
|
Nether = -1,
|
|
Overworld = 0
|
|
}
|
|
} |