11 lines
218 B
C#
11 lines
218 B
C#
using TrueCraft.API;
|
|
|
|
namespace TrueCraft.API.Logic
|
|
{
|
|
public interface ICraftingRecipe
|
|
{
|
|
ItemStack[,] Pattern { get; }
|
|
ItemStack Output { get; }
|
|
bool SignificantMetadata { get; }
|
|
}
|
|
} |