mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
28 lines
732 B
Java
28 lines
732 B
Java
package com.hbm.handler.nei;
|
|
|
|
import java.awt.Rectangle;
|
|
|
|
import com.hbm.blocks.ModBlocks;
|
|
import com.hbm.inventory.gui.GUIPyroOven;
|
|
import com.hbm.inventory.recipes.PyroOvenRecipes;
|
|
|
|
public class PyroHandler extends NEIUniversalHandler {
|
|
|
|
public PyroHandler() {
|
|
super(ModBlocks.machine_pyrooven.getLocalizedName(), ModBlocks.machine_pyrooven, PyroOvenRecipes.getRecipes());
|
|
}
|
|
|
|
@Override
|
|
public String getKey() {
|
|
return "ntmPyrolysis";
|
|
}
|
|
|
|
@Override
|
|
public void loadTransferRects() {
|
|
super.loadTransferRects();
|
|
transferRectsGui.add(new RecipeTransferRect(new Rectangle(50, 35, 28, 14), "ntmPyrolysis"));
|
|
guiGui.add(GUIPyroOven.class);
|
|
RecipeTransferRectHandler.registerRectsToGuis(guiGui, transferRectsGui);
|
|
}
|
|
}
|