04f227f332
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
17 lines
245 B
C#
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
|
|
}
|
|
} |