Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. package fr.paladium.common.jobs;
  2.  
  3. import java.util.ArrayList;
  4.  
  5. import fr.paladium.common.lib.LibJobs;
  6. import net.minecraft.block.Block;
  7. import net.minecraft.init.Blocks;
  8.  
  9. public class XPManager {
  10.  
  11. public static ArrayList<XPItem.BreakEvent> breakEvents = new ArrayList<XPItem.BreakEvent>();
  12.  
  13. public static void init() {
  14. XPItem.BreakEvent oakWoodLumberjack = new XPItem.BreakEvent(LibJobs.LUMBERJACK, new int[] { 10, 20, 30, 40 },
  15. Blocks.LOG);
  16.  
  17. breakEvents.add(oakWoodLumberjack);
  18. }
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement