15 lines
353 B
C#
15 lines
353 B
C#
using System;
|
|
|
|
namespace TrueCraft.API.Logic
|
|
{
|
|
/// <summary>
|
|
/// Describes an item that can be smelted in a furnace to produce a new item.
|
|
/// </summary>
|
|
public interface ISmeltableItem
|
|
{
|
|
/// <summary>
|
|
/// The item this becomes when smelted.
|
|
/// </summary>
|
|
ItemStack SmeltingOutput { get; }
|
|
}
|
|
} |