This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
TrueCraft/TrueCraft.Core/Logic/Items/SlimeballItem.cs
2015-09-30 18:29:07 -04:00

19 lines
467 B
C#

using System;
using TrueCraft.API.Logic;
namespace TrueCraft.Core.Logic.Items
{
public class SlimeballItem : ItemProvider
{
public static readonly short ItemID = 0x155;
public override short ID { get { return 0x155; } }
public override Tuple<int, int> GetIconTexture(byte metadata)
{
return new Tuple<int, int>(14, 1);
}
public override string DisplayName { get { return "Slimeball"; } }
}
}