| 104 | CMapManager::~CMapManager() { delete_data(m_locations); } |
| 105 | |
| 106 | void CMapManager::initialize(u16 id) |
| 107 | { |
| 108 | VERIFY(0); |
| 109 | m_locations->registry().init(id); // actor's id |
| 110 | } |
| 111 | CMapLocation* CMapManager::AddMapLocation(const shared_str& spot_type, u16 id) |
| 112 | { |
| 113 | FindLocationBySpotID key(spot_type, id); |
no test coverage detected