Git didn't remove this...

This commit is contained in:
Daniel V. 2015-02-04 03:04:06 -05:00
parent cd44e78977
commit 1b60cd3941

View File

@ -1,18 +0,0 @@
using System;
using TrueCraft.API.Logic;
namespace TrueCraft.Core.Logic.Items
{
public class FlintAndSteelItem : ToolItem
{
public static readonly short ItemID = 0x103;
public override short ID { get { return 0x103; } }
public override sbyte MaximumStack { get { return 1; } }
public override short BaseDurability { get { return 65; } }
public override string DisplayName { get { return "Flint and Steel"; } }
}
}