Changeset 206 for trunk/src/game/WaypointManager.h
- Timestamp:
- 11/19/08 13:46:16 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/game/WaypointManager.h
r102 r206 24 24 #include <vector> 25 25 #include <string> 26 #include "Utilities/ HashMap.h"26 #include "Utilities/UnorderedMap.h" 27 27 28 28 struct WaypointBehavior … … 83 83 void _clearPath(WaypointPath &path); 84 84 85 typedef HM_NAMESPACE::hash_map<uint32, WaypointPath> WaypointPathMap;85 typedef UNORDERED_MAP<uint32, WaypointPath> WaypointPathMap; 86 86 WaypointPathMap m_pathMap; 87 87 };