Advertisement
Guest User

Armour class

a guest
Mar 22nd, 2013
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. package mods.ACCraft;
  2.  
  3. import cpw.mods.fml.relauncher.Side;
  4. import cpw.mods.fml.relauncher.SideOnly;
  5. import net.minecraft.item.EnumArmorMaterial;
  6. import net.minecraft.item.ItemArmor;
  7. import net.minecraft.item.ItemStack;
  8. import net.minecraft.util.Icon;
  9.  
  10. public class AssassinArmour extends ItemArmor {
  11. public AssassinArmour(int par1, EnumArmorMaterial par2, int par3, int par4)
  12. {
  13.  
  14.  
  15. super(par1, par2, par3, par4);
  16.  
  17.  
  18. }
  19.  
  20.  
  21. public String getTextureFile(){
  22. return ("/Blocks.png");
  23. }
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement