Formating.

This commit is contained in:
Matt 2018-08-29 09:30:36 +02:00
parent 8c6f6a18ab
commit ccf12befd5
3 changed files with 3 additions and 5 deletions

View File

@ -65,8 +65,7 @@ namespace ParkImporter
{ {
std::unique_ptr<IParkImporter> Create(const std::string& hintPath); std::unique_ptr<IParkImporter> Create(const std::string& hintPath);
std::unique_ptr<IParkImporter> CreateS4(); std::unique_ptr<IParkImporter> CreateS4();
std::unique_ptr<IParkImporter> CreateS6( std::unique_ptr<IParkImporter> CreateS6(IObjectRepository& objectRepository);
IObjectRepository& objectRepository);
bool ExtensionIsRCT1(const std::string& extension); bool ExtensionIsRCT1(const std::string& extension);
bool ExtensionIsScenario(const std::string& extension); bool ExtensionIsScenario(const std::string& extension);

View File

@ -843,8 +843,7 @@ public:
} }
}; };
std::unique_ptr<IParkImporter> ParkImporter::CreateS6( std::unique_ptr<IParkImporter> ParkImporter::CreateS6(IObjectRepository& objectRepository)
IObjectRepository& objectRepository)
{ {
return std::make_unique<S6Importer>(objectRepository); return std::make_unique<S6Importer>(objectRepository);
} }