diff --git a/api/buildcraft/api/robots/IRobotOverlayItem.java b/api/buildcraft/api/robots/IRobotOverlayItem.java new file mode 100644 index 00000000..dc4ed336 --- /dev/null +++ b/api/buildcraft/api/robots/IRobotOverlayItem.java @@ -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); +}