Advertisement
Guest User

Untitled

a guest
Aug 24th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.43 KB | None | 0 0
  1. package com.ToonCra123.ComputerApplications.init;
  2.  
  3. import java.util.ArrayList;
  4. import java.util.List;
  5.  
  6. import com.ToonCra123.ComputerApplications.items.ItemBase;
  7.  
  8. import net.minecraft.item.Item;
  9.  
  10. public class ModItems
  11. {
  12.    
  13.     public static final List<Item> ITEMS = new ArrayList<Item>();
  14.    
  15.     public static final Item ORETRITE_ALLOY = new ItemBase("oretrite_alloy");
  16.     public static final Item RUBY = new ItemBase("ruby");
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement