Files
UnrealEngine/Engine/Source/Programs/SlateUGS/Private/Platforms/Windows/SlateUGSMainWindows.cpp
2025-05-18 13:04:45 +08:00

18 lines
363 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "SlateUGSApp.h"
#include "Windows/WindowsHWrapper.h"
/**
* WinMain, called when the application is started
*/
int WINAPI WinMain( _In_ HINSTANCE hInInstance, _In_opt_ HINSTANCE hPrevInstance, _In_ LPSTR, _In_ int nCmdShow )
{
// do the UE Hub thing
RunSlateUGS(GetCommandLineW());
return 0;
}