1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-11-29 23:07:48 +02:00

attempt to run server in a separate app

partially reverts 3258f8bb40487e3731bf452dbda1add6294ff4b2
This commit is contained in:
Andrey Filipenkov
2021-03-07 15:18:40 +03:00
parent 26a1cc5b73
commit e72e5cea6f
9 changed files with 109 additions and 62 deletions

View File

@@ -391,7 +391,6 @@ class VCMIDirsIOS final : public VCMIDirsApple
bfs::path libraryPath() const override;
boost::filesystem::path fullLibraryPath(const std::string & desiredFolder, const std::string & baseLibName) const override;
bfs::path binaryPath() const override;
bfs::path serverPath() const override;
bool developmentMode() const override;
};
@@ -431,7 +430,6 @@ boost::filesystem::path VCMIDirsIOS::fullLibraryPath(const std::string & desired
#endif
}
bfs::path VCMIDirsIOS::binaryPath() const { return {ios_bundlePath()}; }
bfs::path VCMIDirsIOS::serverPath() const { return clientPath(); }
bool VCMIDirsIOS::developmentMode() const { return false; }
#elif defined(VCMI_MAC)