Fixed cables not connecting to our tiles

This commit is contained in:
modmuss50 2015-05-08 19:42:52 +01:00
parent d6ddaa002a
commit d27993ba5f
15 changed files with 70 additions and 13 deletions

View file

@ -0,0 +1,7 @@
package techreborn.compat.nei.recipes;
/**
* Created by mark on 08/05/15.
*/
public class GenericRecipeHander {
}

View file

@ -0,0 +1,37 @@
package techreborn.compat.nei.recipes;
import codechicken.nei.PositionedStack;
import net.minecraft.client.gui.inventory.GuiContainer;
import java.util.List;
/**
* Use this to make your neiHandler
*/
public interface INeiBaseRecipe {
/**
* Add the inputs and the outputs
* @param input add the input stacks to this
* @param outputs add this output stacks to this
*/
public void addPositionedStacks(List<PositionedStack> input, List<PositionedStack> outputs);
/**
*
* @return the recipe name that is used for the recipe
*/
public String getRecipeName();
/**
*
* @return the guiTexture location
*/
public String getGuiTexture();
/**
*
* @return the gui class for the recipe
*/
public Class<? extends GuiContainer> getGuiClass();
}