| package mekanism.client.nei; |
| |
| import java.util.Collection; |
| |
| import mekanism.client.gui.GuiEnrichmentChamber; |
| import mekanism.client.gui.element.GuiProgress.ProgressBar; |
| import mekanism.common.recipe.RecipeHandler.Recipe; |
| import mekanism.common.recipe.machines.EnrichmentRecipe; |
| import mekanism.common.util.LangUtils; |
| |
| public class EnrichmentChamberRecipeHandler extends MachineRecipeHandler |
| { |
| @Override |
| public String getRecipeName() |
| { |
| return LangUtils.localize("tile.MachineBlock.EnrichmentChamber.name"); |
| } |
| |
| @Override |
| public String getRecipeId() |
| { |
| return "mekanism.chamber"; |
| } |
| |
| @Override |
| public String getOverlayIdentifier() |
| { |
| return "chamber"; |
| } |
| |
| @Override |
| public ProgressBar getProgressType() |
| { |
| return ProgressBar.BLUE; |
| } |
| |
| @Override |
| public Collection<EnrichmentRecipe> getRecipes() |
| { |
| return Recipe.ENRICHMENT_CHAMBER.get().values(); |
| } |
| |
| @Override |
| public Class getGuiClass() |
| { |
| return GuiEnrichmentChamber.class; |
| } |
| } |