Advertisement
Guest User

Items.java

a guest
May 3rd, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. package com.vashmeed.someores.items.base;
  2.  
  3. import com.vashmeed.someores.blocks.CopperOre;
  4. import com.vashmeed.someores.items.CopperIngot;
  5.  
  6. import net.minecraft.item.Item;
  7.  
  8. public class Items extends Item {
  9.  
  10.     public Items() {
  11.         super();
  12.     }
  13.    
  14.     public static CopperIngot copper_ingot;
  15.    
  16.     public static void init() {
  17.         copper_ingot = new CopperIngot();
  18.     }
  19.    
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement