| 292 | } |
| 293 | |
| 294 | bool AFCMapModule::ExitMapInstance(const int map_id, const int inst_id) |
| 295 | { |
| 296 | auto pMapInfo = map_infos_.find_value(map_id); |
| 297 | if (pMapInfo == nullptr) |
| 298 | { |
| 299 | return false; |
| 300 | } |
| 301 | |
| 302 | auto pMapInstance = pMapInfo->GetInstance(inst_id); |
| 303 | return (pMapInstance != nullptr); |
| 304 | } |
| 305 | |
| 306 | bool AFCMapModule::GetInstEntityList(const int map_id, const int inst_id, AFIDataList& list) |
| 307 | { |
nothing calls this directly
no test coverage detected