1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 21:43:06 +01:00

Add OpenURL method, with implementation for Linux and Windows

This commit is contained in:
Michał Janiszewski
2020-07-26 21:57:56 +02:00
parent 8217acd86f
commit 352870b503
8 changed files with 31 additions and 0 deletions

View File

@@ -65,6 +65,11 @@ namespace OpenRCT2::Ui
void OpenFolder(const std::string& path) override
{
}
void OpenURL(const std::string& url) override
{
STUB();
}
};
IPlatformUiContext* CreatePlatformUiContext()