2014-01-13 21:41:23 +01:00
|
|
|
package mekanism.client.nei;
|
|
|
|
|
|
|
|
import java.util.Set;
|
|
|
|
|
|
|
|
import mekanism.client.gui.GuiPrecisionSawmill;
|
|
|
|
import mekanism.common.recipe.RecipeHandler.Recipe;
|
2014-01-25 22:29:36 +01:00
|
|
|
import mekanism.common.util.MekanismUtils;
|
2014-01-13 21:41:23 +01:00
|
|
|
|
|
|
|
public class PrecisionSawmillRecipeHandler extends ChanceMachineRecipeHandler
|
|
|
|
{
|
|
|
|
@Override
|
|
|
|
public String getRecipeName()
|
|
|
|
{
|
2014-01-25 22:29:36 +01:00
|
|
|
return MekanismUtils.localize("tile.MachineBlock2.PrecisionSawmill.name");
|
2014-01-13 21:41:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getRecipeId()
|
|
|
|
{
|
|
|
|
return "mekanism.precisionsawmill";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getOverlayIdentifier()
|
|
|
|
{
|
|
|
|
return "precisionsawmill";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Set getRecipes()
|
|
|
|
{
|
|
|
|
return Recipe.PRECISION_SAWMILL.get().entrySet();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getGuiTexture()
|
|
|
|
{
|
|
|
|
return "mekanism:gui/GuiPrecisionSawmill.png";
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Class getGuiClass()
|
|
|
|
{
|
|
|
|
return GuiPrecisionSawmill.class;
|
|
|
|
}
|
|
|
|
}
|