TrueCraft/TrueCraft.API/Logic/ICraftingRecipe.cs
2015-02-08 02:53:49 +02:00

11 lines
218 B
C#

using TrueCraft.API;
namespace TrueCraft.API.Logic
{
public interface ICraftingRecipe
{
ItemStack[,] Pattern { get; }
ItemStack Output { get; }
bool SignificantMetadata { get; }
}
}