e5a1ee3439
This does not include all recipes in the game, and there is no support for crafting benches yet.
10 lines
266 B
C#
10 lines
266 B
C#
using TrueCraft.API.Windows;
|
|
|
|
namespace TrueCraft.API.Logic
|
|
{
|
|
public interface ICraftingRepository
|
|
{
|
|
ICraftingRecipe GetRecipe(IWindowArea craftingArea);
|
|
bool TestRecipe(IWindowArea craftingArea, ICraftingRecipe recipe, int x, int y);
|
|
}
|
|
} |