update API for IMC removal
This commit is contained in:
parent
3c41186609
commit
c426661973
2 changed files with 8 additions and 0 deletions
|
@ -28,6 +28,10 @@ public interface IAssemblyRecipeManager {
|
|||
void addRecipe(String id, int energyCost, ItemStack output, Object... input);
|
||||
|
||||
void addRecipe(IFlexibleRecipe<ItemStack> recipe);
|
||||
|
||||
void removeRecipe(String id);
|
||||
|
||||
void removeRecipe(IFlexibleRecipe<ItemStack> recipe);
|
||||
|
||||
Collection<IFlexibleRecipe<ItemStack>> getRecipes();
|
||||
}
|
||||
|
|
|
@ -18,6 +18,10 @@ public interface IRefineryRecipeManager {
|
|||
|
||||
void addRecipe(String id, FluidStack ingredient1, FluidStack ingredient2, FluidStack result, int energy, int delay);
|
||||
|
||||
void removeRecipe(String id);
|
||||
|
||||
void removeRecipe(IFlexibleRecipe<FluidStack> recipe);
|
||||
|
||||
Collection<IFlexibleRecipe<FluidStack>> getRecipes();
|
||||
|
||||
IFlexibleRecipe<FluidStack> getRecipe(String currentRecipeId);
|
||||
|
|
Loading…
Reference in a new issue