TrueCraft/TrueCraft.API/ArmorMaterial.cs
Drew DeVault f687a22531 Implement all crafting recipes (except for wool)
Because I am really, really out of patience
2015-02-08 00:05:00 -07:00

16 lines
235 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace TrueCraft.API
{
public enum ArmorMaterial
{
Leather,
Chain,
Iron,
Gold,
Diamond
}
}