TrueCraft/TrueCraft.API/ToolMaterial.cs

17 lines
245 B
C#
Raw Normal View History

2015-01-26 06:17:42 -05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TrueCraft.API
{
public enum ToolMaterial
{
None,
2015-01-26 06:17:42 -05:00
Wood,
Stone,
Iron,
Gold,
Diamond
}
}