TechReborn/src/main/java/techreborn/api/TechRebornAPI.java

27 lines
551 B
Java
Raw Normal View History

2015-04-12 01:02:56 +02:00
package techreborn.api;
2015-04-15 18:27:05 +02:00
import net.minecraft.item.ItemStack;
2015-04-12 21:04:12 +02:00
2015-04-12 01:02:56 +02:00
public final class TechRebornAPI {
2015-05-07 18:04:07 +02:00
2015-04-24 15:20:09 +02:00
public static void addRollingMachinceRecipe(ItemStack output,
Object... components)
{
RollingMachineRecipe.instance.addRecipe(output, components);
}
public void addShapelessRollingMachinceRecipe(ItemStack output,
Object... components)
{
RollingMachineRecipe.instance.addShapelessRecipe(output, components);
}
2015-04-15 18:27:05 +02:00
}
2015-04-15 17:23:12 +02:00
class RegisteredItemRecipe extends Exception {
2015-04-24 15:20:09 +02:00
public RegisteredItemRecipe(String message)
{
super(message);
}
2015-04-12 01:02:56 +02:00
}