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

18 lines
375 B
C++

// 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;
}