equivalent-exchange-3/ee3_common/ee3/common/emc/EMCRegistry.java

24 lines
457 B
Java
Raw Normal View History

2012-10-16 03:42:57 +02:00
package ee3.common.emc;
import java.util.HashMap;
import java.util.Map;
2012-10-16 03:56:50 +02:00
import net.minecraft.src.ItemStack;
2012-10-16 03:42:57 +02:00
public class EMCRegistry {
private static final EMCRegistry emcRegistry = new EMCRegistry();
private HashMap<Integer, HashMap<Integer, EMCEntry>> emcMap = new HashMap<Integer, HashMap<Integer, EMCEntry>>();
public EMCRegistry instance() {
return emcRegistry;
}
2012-10-16 03:56:50 +02:00
public EMCEntry getEMCEntry(ItemStack item) {
return null;
}
2012-10-16 03:42:57 +02:00
}