Files
Server/src/engine/gameManager/NPCManager.java
T

22 lines
630 B
Java
Raw Normal View History

2023-03-28 17:22:57 -04:00
package engine.gameManager;
import engine.objects.EquipmentSetEntry;
import java.util.ArrayList;
import java.util.HashMap;
public enum NPCManager {
NPC_MANAGER;
2023-03-28 17:45:58 -04:00
public static HashMap<Integer, ArrayList<EquipmentSetEntry>> _equipmentSetMap = new HashMap<>();
public static HashMap<Integer, ArrayList<Integer>> _runeSetMap = new HashMap<>();
2023-03-28 17:22:57 -04:00
2023-03-28 17:29:16 -04:00
public static void LoadAllEquipmentSets() {
2023-03-28 17:45:58 -04:00
_equipmentSetMap = DbManager.ItemBaseQueries.LOAD_EQUIPMENT_FOR_NPC_AND_MOBS();
}
public static void LoadAllRuneSets() {
_runeSetMap = DbManager.ItemBaseQueries.LOAD_RUNES_FOR_NPC_AND_MOBS();
2023-03-28 17:29:16 -04:00
}
2023-03-28 17:22:57 -04:00
}