| 339 | } |
| 340 | |
| 341 | std::string cResourceMan::FileReadStr(const std::string& pFile) { |
| 342 | |
| 343 | auto content = FileRead(pFile); |
| 344 | |
| 345 | return std::string((char*)content->data(), content->size()); |
| 346 | } |
| 347 | |
| 348 | tSharedBuffer cResourceMan::FileRead(const std::string& pFile) { |
| 349 | std::ifstream* fileStream; |
no test coverage detected