TrueCraft/TrueCraft.API/Logic/IBlockProvider.cs

12 lines
247 B
C#
Raw Normal View History

2014-12-28 15:38:58 -07:00
using System;
namespace TrueCraft.API.Logic
{
public interface IBlockProvider
{
byte ID { get; }
double Hardness { get; }
string DisplayName { get; }
2014-12-28 18:55:46 -07:00
Tuple<int, int> GetTextureMap(byte metadata);
2014-12-28 15:38:58 -07:00
}
}