TrueCraft/TrueCraft.API/ToolMaterial.cs
Daniel Vidmar 04f227f332 Item fixes
Added a new property to ToolItem
- Base Durability
Added a new property to SwordItem
- Damage
Created base classes for Axes, Hoes, Pickaxes, and Shovels
Fixes
- Fixed format issues
2015-01-26 16:25:11 -07:00

17 lines
245 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TrueCraft.API
{
public enum ToolMaterial
{
None,
Wood,
Stone,
Iron,
Gold,
Diamond
}
}