15 lines
341 B
C#
15 lines
341 B
C#
using System;
|
|
|
|
namespace TrueCraft.API.Logic
|
|
{
|
|
/// <summary>
|
|
/// Describes an item that can be burnt as fuel in a furnace.
|
|
/// </summary>
|
|
public interface IBurnableItem
|
|
{
|
|
/// <summary>
|
|
/// The duration of time this item can act as fuel.
|
|
/// </summary>
|
|
TimeSpan BurnTime { get; }
|
|
}
|
|
} |