TrueCraft/TrueCraft.API/Logic/ICraftingRepository.cs
Drew DeVault e5a1ee3439 Implement crafting from the inventory window
This does not include all recipes in the game, and there is no support
for crafting benches yet.
2015-02-07 15:51:38 -07:00

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