| 470 | } |
| 471 | |
| 472 | std::string cResourceMan::GetSave(const std::string &pName) const { |
| 473 | for (auto& Save : mSaves) { |
| 474 | if (Save.first == pName) |
| 475 | return Save.second; |
| 476 | } |
| 477 | return ""; |
| 478 | } |
| 479 | |
| 480 | bool cResourceMan::isDataAvailable() const { |
| 481 | return mReleasePath.size() > 0; |
no outgoing calls
no test coverage detected