2013-08-27 00:49:32 +02:00
|
|
|
package mekanism.client.nei;
|
2013-08-10 21:52:59 +02:00
|
|
|
|
|
|
|
import java.util.Set;
|
|
|
|
|
2013-08-27 00:49:32 +02:00
|
|
|
import mekanism.client.gui.GuiEnrichmentChamber;
|
2014-01-08 02:55:50 +01:00
|
|
|
import mekanism.common.recipe.RecipeHandler.Recipe;
|
2014-01-25 22:29:36 +01:00
|
|
|
import mekanism.common.util.MekanismUtils;
|
2013-08-10 21:52:59 +02:00
|
|
|
|
|
|
|
public class EnrichmentChamberRecipeHandler extends MachineRecipeHandler
|
|
|
|
{
|
|
|
|
@Override
|
|
|
|
public String getRecipeName()
|
|
|
|
{
|
2014-01-25 22:29:36 +01:00
|
|
|
return MekanismUtils.localize("tile.MachineBlock.EnrichmentChamber.name");
|
2013-08-10 21:52:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getRecipeId()
|
|
|
|
{
|
|
|
|
return "mekanism.chamber";
|
|
|
|
}
|
2014-03-08 02:00:25 +01:00
|
|
|
|
2013-08-10 21:52:59 +02:00
|
|
|
@Override
|
|
|
|
public String getOverlayIdentifier()
|
|
|
|
{
|
|
|
|
return "chamber";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Set getRecipes()
|
|
|
|
{
|
|
|
|
return Recipe.ENRICHMENT_CHAMBER.get().entrySet();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Class getGuiClass()
|
|
|
|
{
|
|
|
|
return GuiEnrichmentChamber.class;
|
|
|
|
}
|
|
|
|
}
|