mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
18 lines
546 B
Java
18 lines
546 B
Java
package com.hbm.crafting.handlers;
|
|
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraftforge.oredict.ShapedOreRecipe;
|
|
|
|
public class ShapedOreRecipeExt extends ShapedOreRecipe {
|
|
|
|
|
|
public ShapedOreRecipeExt(Block result, Object... recipe) { this(new ItemStack(result), recipe); }
|
|
public ShapedOreRecipeExt(Item result, Object... recipe) { this(new ItemStack(result), recipe); }
|
|
|
|
public ShapedOreRecipeExt(ItemStack result, Object... recipe) {
|
|
super(result, recipe);
|
|
}
|
|
}
|