add IRobotOverlayItem API
This commit is contained in:
parent
99432bb11a
commit
70e1436964
1 changed files with 13 additions and 0 deletions
13
api/buildcraft/api/robots/IRobotOverlayItem.java
Normal file
13
api/buildcraft/api/robots/IRobotOverlayItem.java
Normal file
|
@ -0,0 +1,13 @@
|
|||
package buildcraft.api.robots;
|
||||
|
||||
import cpw.mods.fml.relauncher.Side;
|
||||
import cpw.mods.fml.relauncher.SideOnly;
|
||||
import net.minecraft.client.renderer.texture.TextureManager;
|
||||
import net.minecraft.item.ItemStack;
|
||||
|
||||
public interface IRobotOverlayItem {
|
||||
boolean isValidRobotOverlay(ItemStack stack);
|
||||
|
||||
@SideOnly(Side.CLIENT)
|
||||
void renderRobotOverlay(ItemStack stack, TextureManager textureManager);
|
||||
}
|
Loading…
Reference in a new issue