| 129 | |
| 130 | public: |
| 131 | bool IsSemiCompatibleVersion(uint32_t& minVersion, uint32_t& targetVersion) |
| 132 | { |
| 133 | const auto& header = _os->getHeader(); |
| 134 | minVersion = header.minVersion; |
| 135 | targetVersion = header.targetVersion; |
| 136 | return targetVersion > kParkFileCurrentVersion; |
| 137 | } |
| 138 | |
| 139 | void Load(const std::string_view path, const bool skipObjectCheck) |
| 140 | { |
no outgoing calls
no test coverage detected