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/BookshelfBlock.cs
2015-01-22 00:49:50 -05:00

25 lines
688 B
C#

using System;
using TrueCraft.API.Logic;
namespace TrueCraft.Core.Logic.Blocks
{
public class BookshelfBlock : BlockProvider
{
public static readonly byte BlockID = 0x2F;
public override byte ID { get { return 0x2F; } }
public override double BlastResistance { get { return 7.5; } }
public override double Hardness { get { return 1.5; } }
public override byte Luminance { get { return 0; } }
public override string DisplayName { get { return "Bookshelf"; } }
public override Tuple<int, int> GetTextureMap(byte metadata)
{
return new Tuple<int, int>(3, 2);
}
}
}