| 462 | } |
| 463 | |
| 464 | std::string cResourceMan::GetMapPath(const std::string& pName) const { |
| 465 | for (auto& Map : mMaps) { |
| 466 | if (Map.first == pName) |
| 467 | return Map.second; |
| 468 | } |
| 469 | return ""; |
| 470 | } |
| 471 | |
| 472 | std::string cResourceMan::GetSave(const std::string &pName) const { |
| 473 | for (auto& Save : mSaves) { |
no outgoing calls
no test coverage detected