Changeset 206 for trunk/src/game/SpellMgr.h
- Timestamp:
- 11/19/08 13:46:16 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/game/SpellMgr.h
r196 r206 29 29 #include "Database/SQLStorage.h" 30 30 31 #include "Utilities/ HashMap.h"31 #include "Utilities/UnorderedMap.h" 32 32 #include <map> 33 33 … … 493 493 }; 494 494 495 typedef HM_NAMESPACE::hash_map<uint32, SpellProcEventEntry> SpellProcEventMap;495 typedef UNORDERED_MAP<uint32, SpellProcEventEntry> SpellProcEventMap; 496 496 497 497 #define ELIXIR_BATTLE_MASK 0x1 … … 532 532 }; 533 533 534 typedef HM_NAMESPACE::hash_map<uint32, SpellTargetPosition> SpellTargetPositionMap;534 typedef UNORDERED_MAP<uint32, SpellTargetPosition> SpellTargetPositionMap; 535 535 536 536 // Spell pet auras … … 595 595 }; 596 596 597 typedef HM_NAMESPACE::hash_map<uint32, SpellChainNode> SpellChainMap;597 typedef UNORDERED_MAP<uint32, SpellChainNode> SpellChainMap; 598 598 typedef std::multimap<uint32, uint32> SpellChainMapNext; 599 599