using System;
namespace TrueCraft.API.Logic
{
///
/// Describes an item that can be smelted in a furnace to produce a new item.
///
public interface ISmeltableItem
{
///
/// The item this becomes when smelted.
///
ItemStack SmeltingOutput { get; }
}
}