Advertisement
kamakwazee

RedSword.java

Apr 17th, 2013
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.47 KB | None | 0 0
  1. package mods.splash.swords;
  2.  
  3. import net.minecraft.client.renderer.texture.IconRegister;
  4. import net.minecraft.item.EnumToolMaterial;
  5. import net.minecraft.item.ItemSword;
  6.  
  7. public class RedSword extends ItemSword
  8. {
  9.  
  10.     public RedSword(int par1, EnumToolMaterial par2EnumToolMaterial)
  11.     {
  12.         super(par1, par2EnumToolMaterial);
  13.     }
  14.    
  15.     @Override
  16.     public void updateIcons(IconRegister iconregister)
  17.     {
  18.         iconIndex = iconregister.registerIcon("splash:RedSword");
  19.     }
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement