You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
See the attached Jira for a current screenshot of the UI #jira UE-148909 #review @Brandon.Schaefer, @editor-ux #preflight none [CL 20368463 by robert seiver in ue5-main branch]
18 lines
380 B
C++
18 lines
380 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;
|
|
}
|