| 2817 | } |
| 2818 | |
| 2819 | ParkLoadResult Load(const u8string& path, const bool skipObjectCheck) override |
| 2820 | { |
| 2821 | _parkFile = std::make_unique<ParkFile>(); |
| 2822 | _parkFile->Load(path, skipObjectCheck); |
| 2823 | |
| 2824 | auto result = ParkLoadResult(std::move(_parkFile->RequiredObjects)); |
| 2825 | result.SemiCompatibleVersion = _parkFile->IsSemiCompatibleVersion(result.MinVersion, result.TargetVersion); |
| 2826 | return result; |
| 2827 | } |
| 2828 | |
| 2829 | ParkLoadResult LoadSavedGame(const u8string& path, bool skipObjectCheck = false) override |
| 2830 | { |
nothing calls this directly
no test coverage detected