diff options
Diffstat (limited to 'src/main/java/itemBlocks/IB_ItemProxyEndpoint.java')
-rw-r--r-- | src/main/java/itemBlocks/IB_ItemProxyEndpoint.java | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/main/java/itemBlocks/IB_ItemProxyEndpoint.java b/src/main/java/itemBlocks/IB_ItemProxyEndpoint.java new file mode 100644 index 0000000000..90d683c226 --- /dev/null +++ b/src/main/java/itemBlocks/IB_ItemProxyEndpoint.java @@ -0,0 +1,22 @@ +package itemBlocks; + +import java.util.List; + +import net.minecraft.block.Block; +import net.minecraft.entity.player.EntityPlayer; +import net.minecraft.item.ItemBlock; +import net.minecraft.item.ItemStack; + +public class IB_ItemProxyEndpoint extends ItemBlock { + + public IB_ItemProxyEndpoint(Block block) { + super(block); + } + + @SuppressWarnings({ "rawtypes", "unchecked" }) + @Override + public void addInformation(ItemStack stack, EntityPlayer player, List lines, boolean advancedTooltips) { + lines.add("Point the marked side to where you want to provide an inventory proxy to."); + lines.add("Insert an Integrated Circuit to set the network channel."); + } +} |