Fixed cables not connecting to our tiles
This commit is contained in:
parent
d6ddaa002a
commit
d27993ba5f
15 changed files with 70 additions and 13 deletions
|
@ -0,0 +1,7 @@
|
|||
package techreborn.compat.nei.recipes;
|
||||
|
||||
/**
|
||||
* Created by mark on 08/05/15.
|
||||
*/
|
||||
public class GenericRecipeHander {
|
||||
}
|
|
@ -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();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue