Added Lathe

This commit is contained in:
Gig 2015-05-08 00:15:04 +01:00
parent c6e3dfaf82
commit 2157fe1cb4
8 changed files with 232 additions and 0 deletions

View file

@ -0,0 +1,16 @@
package techreborn.recipes;
import net.minecraft.item.ItemStack;
import techreborn.api.recipe.BaseRecipe;
public class LatheRecipe extends BaseRecipe {
public LatheRecipe(ItemStack input1, ItemStack output1, int tickTime, int euPerTick)
{
super("alloySmelterRecipe", tickTime, euPerTick);
if(input1 != null)
inputs.add(input1);
if(output1 != null)
outputs.add(output1);
}
}