BiomesOPlenty/common/biomesoplenty/itemblocks/ItemBlockAppleLeaves.java

25 lines
456 B
Java
Raw Normal View History

2013-07-03 07:51:39 +00:00
package biomesoplenty.itemblocks;
2013-05-03 13:00:44 +00:00
import net.minecraft.item.ItemBlock;
import net.minecraft.util.Icon;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
2013-07-03 07:51:39 +00:00
public class ItemBlockAppleLeaves extends ItemBlock
2013-05-03 13:00:44 +00:00
{
2013-05-31 10:34:02 +00:00
@SideOnly(Side.CLIENT)
private Icon texture;
2013-07-03 07:51:39 +00:00
public ItemBlockAppleLeaves(int par1)
2013-05-31 10:34:02 +00:00
{
super(par1);
setMaxDamage(0);
setHasSubtypes(true);
}
@Override
public int getMetadata(int meta)
{
return meta;
}
2013-05-03 13:00:44 +00:00
}