15 lines
395 B
C++
15 lines
395 B
C++
// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
|
|
|
|
#if PLATFORM_UWP && !USE_EDITOR
|
|
|
|
#include "UWPGame.h"
|
|
#include "Engine/Platform/UWP/UWPPlatformImpl.h"
|
|
|
|
void UWPGame::InitMainWindowSettings(CreateWindowSettings& settings)
|
|
{
|
|
// Link UWP window implementation (Flax has no access to modify window settings here)
|
|
settings.Data = CUWPPlatform->GetMainWindowImpl();
|
|
}
|
|
|
|
#endif
|