using System; using TrueCraft.API.Logic; namespace TrueCraft.Core.Logic.Blocks { public class RedstoneDustBlock : BlockProvider { public static readonly byte BlockID = 0x37; public override byte ID { get { return 0x37; } } public override double BlastResistance { get { return 0; } } public override double Hardness { get { return 0; } } public override byte Luminance { get { return 0; } } public override string DisplayName { get { return "Redstone Dust"; } } public override Tuple GetTextureMap(byte metadata) { return new Tuple(4, 10); } } }