Files
UnrealEngineUWP/Engine/Source/Programs/SlateUGS/Private/Platforms/Linux/SlateUGSMainLinux.cpp
robert seiver 3810bb1598 Add experimental Slate UGS prototype that has UI frontend, no data layer yet.
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]
2022-05-25 14:02:29 -04:00

10 lines
205 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "SlateUGSApp.h"
#include "UnixCommonStartup.h"
int main(int argc, char *argv[])
{
return CommonUnixMain(argc, argv, &RunSlateUGS);
}