2014-01-13 15:41:23 -05:00
|
|
|
package mekanism.client.nei;
|
|
|
|
|
|
|
|
import java.util.Set;
|
|
|
|
|
|
|
|
import mekanism.client.gui.GuiPrecisionSawmill;
|
|
|
|
import mekanism.common.recipe.RecipeHandler.Recipe;
|
2014-01-25 16:29:36 -05:00
|
|
|
import mekanism.common.util.MekanismUtils;
|
2014-01-13 15:41:23 -05:00
|
|
|
|
|
|
|
public class PrecisionSawmillRecipeHandler extends ChanceMachineRecipeHandler
|
|
|
|
{
|
|
|
|
@Override
|
|
|
|
public String getRecipeName()
|
|
|
|
{
|
2014-01-25 16:29:36 -05:00
|
|
|
return MekanismUtils.localize("tile.MachineBlock2.PrecisionSawmill.name");
|
2014-01-13 15:41:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getRecipeId()
|
|
|
|
{
|
|
|
|
return "mekanism.precisionsawmill";
|
|
|
|
}
|
2014-03-07 19:00:25 -06:00
|
|
|
|
2014-01-13 15:41:23 -05:00
|
|
|
@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";
|
|
|
|
}
|
2014-03-07 19:00:25 -06:00
|
|
|
|
2014-01-13 15:41:23 -05:00
|
|
|
@Override
|
|
|
|
public Class getGuiClass()
|
|
|
|
{
|
|
|
|
return GuiPrecisionSawmill.class;
|
|
|
|
}
|
|
|
|
}
|