14 lines
269 B
Java
14 lines
269 B
Java
|
package appeng.recipes;
|
||
|
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraftforge.oredict.ShapedOreRecipe;
|
||
|
|
||
|
public class AEShapedOreRecipe extends ShapedOreRecipe
|
||
|
{
|
||
|
|
||
|
public AEShapedOreRecipe(ItemStack result, Object... recipe) {
|
||
|
super( result, recipe );
|
||
|
|
||
|
}
|
||
|
}
|