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/Blocks/NoteBlockBlock.cs
2014-12-28 18:55:46 -07:00

21 lines
540 B
C#

using System;
using TrueCraft.API.Logic;
namespace TrueCraft.Core.Logic.Blocks
{
public class NoteBlockBlock : BlockProvider
{
public static readonly byte BlockID = 0x19;
public override byte ID { get { return 0x19; } }
public override double Hardness { get { return 0.8; } }
public override string DisplayName { get { return "Note Block"; } }
public override Tuple<int, int> GetTextureMap(byte metadata)
{
return new Tuple<int, int>(10, 4);
}
}
}