Update platforms impl

This commit is contained in:
Wojtek Figat
2023-05-28 16:45:08 +02:00
parent 81ae687238
commit 587578ccfb
6 changed files with 11 additions and 25 deletions

View File

@@ -148,16 +148,6 @@ bool UWPPlatform::GetHasFocus()
return true;
}
bool UWPPlatform::CanOpenUrl(const StringView& url)
{
return false;
}
void UWPPlatform::OpenUrl(const StringView& url)
{
// TODO: add support for OpenUrl on UWP
}
Float2 UWPPlatform::GetDesktopSize()
{
Float2 result;

View File

@@ -35,8 +35,6 @@ public:
static String GetUserLocaleName();
static String GetComputerName();
static bool GetHasFocus();
static bool CanOpenUrl(const StringView& url);
static void OpenUrl(const StringView& url);
static Float2 GetDesktopSize();
static Window* CreateWindow(const CreateWindowSettings& settings);
static void* LoadLibrary(const Char* filename);