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

12 lines
161 B
C#

using System;
namespace TrueCraft.API
{
public enum Difficulty
{
Peaceful = 0,
Easy = 1,
Normal = 2,
Hard = 3
}
}