using System; namespace TrueCraft.API.Logic { /// /// Describes an item that can be burnt as fuel in a furnace. /// public interface IBurnableItem { /// /// The duration of time this item can act as fuel. /// TimeSpan BurnTime { get; } } }