public
| 60 | |
| 61 | //public |
| 62 | bool Map::load(const std::string& path) |
| 63 | { |
| 64 | bool success = false; |
| 65 | SharedContent.getThread()->runInMainSync([&]() { |
| 66 | success = loadUnsafe(path); |
| 67 | }); |
| 68 | return success; |
| 69 | } |
| 70 | |
| 71 | bool Map::loadUnsafe(const std::string& path) |
| 72 | { |
nothing calls this directly
no test coverage detected