This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
TrueCraft/TrueCraft.API/Logic/ISmeltableItem.cs
2015-10-04 15:46:43 -04:00

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; }
}
}