126 | | typedef HM_NAMESPACE::hash_map<uint32/*cell_id*/,CellObjectGuids> CellObjectGuidsMap; |
127 | | typedef HM_NAMESPACE::hash_map<uint32/*(mapid,spawnMode) pair*/,CellObjectGuidsMap> MapObjectGuids; |
128 | | |
129 | | typedef HM_NAMESPACE::hash_map<uint64/*(instance,guid) pair*/,time_t> RespawnTimes; |
| 126 | typedef UNORDERED_MAP<uint32/*cell_id*/,CellObjectGuids> CellObjectGuidsMap; |
| 127 | typedef UNORDERED_MAP<uint32/*(mapid,spawnMode) pair*/,CellObjectGuidsMap> MapObjectGuids; |
| 128 | |
| 129 | typedef UNORDERED_MAP<uint64/*(instance,guid) pair*/,time_t> RespawnTimes; |
136 | | typedef HM_NAMESPACE::hash_map<uint32,CreatureData> CreatureDataMap; |
137 | | typedef HM_NAMESPACE::hash_map<uint32,GameObjectData> GameObjectDataMap; |
138 | | typedef HM_NAMESPACE::hash_map<uint32,CreatureLocale> CreatureLocaleMap; |
139 | | typedef HM_NAMESPACE::hash_map<uint32,GameObjectLocale> GameObjectLocaleMap; |
140 | | typedef HM_NAMESPACE::hash_map<uint32,ItemLocale> ItemLocaleMap; |
141 | | typedef HM_NAMESPACE::hash_map<uint32,QuestLocale> QuestLocaleMap; |
142 | | typedef HM_NAMESPACE::hash_map<uint32,NpcTextLocale> NpcTextLocaleMap; |
143 | | typedef HM_NAMESPACE::hash_map<uint32,PageTextLocale> PageTextLocaleMap; |
144 | | typedef HM_NAMESPACE::hash_map<uint32,TrinityStringLocale> TrinityStringLocaleMap; |
145 | | typedef HM_NAMESPACE::hash_map<uint32,NpcOptionLocale> NpcOptionLocaleMap; |
| 136 | typedef UNORDERED_MAP<uint32,CreatureData> CreatureDataMap; |
| 137 | typedef UNORDERED_MAP<uint32,GameObjectData> GameObjectDataMap; |
| 138 | typedef UNORDERED_MAP<uint32,CreatureLocale> CreatureLocaleMap; |
| 139 | typedef UNORDERED_MAP<uint32,GameObjectLocale> GameObjectLocaleMap; |
| 140 | typedef UNORDERED_MAP<uint32,ItemLocale> ItemLocaleMap; |
| 141 | typedef UNORDERED_MAP<uint32,QuestLocale> QuestLocaleMap; |
| 142 | typedef UNORDERED_MAP<uint32,NpcTextLocale> NpcTextLocaleMap; |
| 143 | typedef UNORDERED_MAP<uint32,PageTextLocale> PageTextLocaleMap; |
| 144 | typedef UNORDERED_MAP<uint32,TrinityStringLocale> TrinityStringLocaleMap; |
| 145 | typedef UNORDERED_MAP<uint32,NpcOptionLocale> NpcOptionLocaleMap; |
252 | | typedef HM_NAMESPACE::hash_map<uint32, uint32> CacheNpcTextIdMap; |
253 | | |
254 | | |
255 | | typedef HM_NAMESPACE::hash_map<uint32, VendorItemData> CacheVendorItemMap; |
256 | | typedef HM_NAMESPACE::hash_map<uint32, TrainerSpellData> CacheTrainerSpellMap; |
| 252 | typedef UNORDERED_MAP<uint32, uint32> CacheNpcTextIdMap; |
| 253 | |
| 254 | |
| 255 | typedef UNORDERED_MAP<uint32, VendorItemData> CacheVendorItemMap; |
| 256 | typedef UNORDERED_MAP<uint32, TrainerSpellData> CacheTrainerSpellMap; |
300 | | typedef HM_NAMESPACE::hash_map<uint32, Quest*> QuestMap; |
301 | | |
302 | | typedef HM_NAMESPACE::hash_map<uint32, AreaTrigger> AreaTriggerMap; |
303 | | |
304 | | typedef HM_NAMESPACE::hash_map<uint32, std::string> AreaTriggerScriptMap; |
305 | | |
306 | | typedef HM_NAMESPACE::hash_map<uint32, ReputationOnKillEntry> RepOnKillMap; |
307 | | |
308 | | typedef HM_NAMESPACE::hash_map<uint32, WeatherZoneChances> WeatherZoneMap; |
309 | | |
310 | | typedef HM_NAMESPACE::hash_map<uint32, PetCreateSpellEntry> PetCreateSpellMap; |
| 300 | typedef UNORDERED_MAP<uint32, Quest*> QuestMap; |
| 301 | |
| 302 | typedef UNORDERED_MAP<uint32, AreaTrigger> AreaTriggerMap; |
| 303 | |
| 304 | typedef UNORDERED_MAP<uint32, std::string> AreaTriggerScriptMap; |
| 305 | |
| 306 | typedef UNORDERED_MAP<uint32, ReputationOnKillEntry> RepOnKillMap; |
| 307 | |
| 308 | typedef UNORDERED_MAP<uint32, WeatherZoneChances> WeatherZoneMap; |
| 309 | |
| 310 | typedef UNORDERED_MAP<uint32, PetCreateSpellEntry> PetCreateSpellMap; |
806 | | typedef HM_NAMESPACE::hash_map<uint32, GossipText*> GossipTextMap; |
807 | | typedef HM_NAMESPACE::hash_map<uint32, uint32> QuestAreaTriggerMap; |
808 | | typedef HM_NAMESPACE::hash_map<uint32, uint32> BattleMastersMap; |
809 | | typedef HM_NAMESPACE::hash_map<uint32, std::string> ItemTextMap; |
| 806 | typedef UNORDERED_MAP<uint32, GossipText*> GossipTextMap; |
| 807 | typedef UNORDERED_MAP<uint32, uint32> QuestAreaTriggerMap; |
| 808 | typedef UNORDERED_MAP<uint32, uint32> BattleMastersMap; |
| 809 | typedef UNORDERED_MAP<uint32, std::string> ItemTextMap; |