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

16 lines
392 B
C#

using System;
using TrueCraft.API.Logic;
namespace TrueCraft.Core.Logic.Blocks
{
public class RailBlock : BlockProvider
{
public static readonly byte BlockID = 0x42;
public override byte ID { get { return 0x42; } }
public override double Hardness { get { return 0.7; } }
public override string DisplayName { get { return "Rail"; } }
}
}