Started working on the recipe system
This commit is contained in:
parent
85e7503aa6
commit
4d66bb9e9d
5 changed files with 123 additions and 0 deletions
|
@ -0,0 +1,15 @@
|
|||
package techreborn.recipes;
|
||||
|
||||
import net.minecraft.item.ItemStack;
|
||||
import techreborn.api.recipe.BaseRecipe;
|
||||
|
||||
public class ImplosionCompressorRecipe extends BaseRecipe {
|
||||
|
||||
public ImplosionCompressorRecipe(String name, ItemStack input1, ItemStack input2, ItemStack output1, ItemStack output2) {
|
||||
super(name);
|
||||
inputs.add(input1);
|
||||
inputs.add(input2);
|
||||
outputs.add(output1);
|
||||
outputs.add(output2);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue