Guest User

Untitled

a guest
Dec 10th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. package Tutorial.Common;
  2.  
  3. import net.minecraft.src.EnumToolMaterial;
  4. import net.minecraft.src.ItemSword;
  5.  
  6. public class ItemTutorialSword extends ItemSword{
  7.  
  8. public ItemTutorialSword(int ItemID, EnumToolMaterial material){
  9. super(ItemID, material);
  10. }
  11.  
  12. public String getTextureFile(){
  13. return "/Blocks.png";
  14. }
  15. }
Add Comment
Please, Sign In to add comment