10 lines
125 B
C#
10 lines
125 B
C#
using System;
|
|
|
|
namespace TrueCraft.API
|
|
{
|
|
public enum GameMode
|
|
{
|
|
Survival = 0,
|
|
Creative = 1
|
|
}
|
|
} |