19 lines
460 B
C#
19 lines
460 B
C#
using System;
|
|
using TrueCraft.API.Logic;
|
|
|
|
namespace TrueCraft.Core.Logic.Items
|
|
{
|
|
public class StringItem : ItemProvider
|
|
{
|
|
public static readonly short ItemID = 0x11F;
|
|
|
|
public override short ID { get { return 0x11F; } }
|
|
|
|
public override Tuple<int, int> GetIconTexture(byte metadata)
|
|
{
|
|
return new Tuple<int, int>(8, 0);
|
|
}
|
|
|
|
public override string DisplayName { get { return "String"; } }
|
|
}
|
|
} |