Files
UnrealEngineUWP/Engine/Source/Programs/SlateViewer/Private/Windows/SlateViewerMainWindows.cpp
T

18 lines
375 B
C++
Raw Normal View History

2019-12-26 23:01:54 -05:00
// Copyright Epic Games, Inc. All Rights Reserved.
#include "SlateViewerApp.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 slate viewer thing
RunSlateViewer(GetCommandLineW());
return 0;
}