Moved last few hashmaps to mcMMO.java & killed off Misc.java

This commit is contained in:
GJ
2012-03-20 18:36:47 -04:00
parent 9e604aed5e
commit 0fa39c4ace
5 changed files with 15 additions and 30 deletions

View File

@ -1,17 +0,0 @@
package com.gmail.nossr50.config;
import java.util.HashMap;
import org.bukkit.entity.Entity;
import org.bukkit.entity.Player;
import com.gmail.nossr50.mcMMO;
public class Misc {
public HashMap<Entity, Integer> arrowTracker = new HashMap<Entity, Integer>();
public HashMap<Integer, Player> tntTracker = new HashMap<Integer, Player>();
mcMMO plugin;
public Misc(mcMMO mcMMO) {
this.plugin = mcMMO;
}
}