mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Files
ea277dc43d15facac7ede4339e1f1025033c19ea
21 lines
500 B
C++
21 lines
500 B
C++
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
|
|||
|
|||
#include "CoreMinimal.h"
|
|||
#include "UnixCommonStartup.h"
|
|||
|
|||
extern int32 UnrealVersionSelectorMain( const TCHAR* CommandLine );
|
|||
|
|||
TArray<FString> GArguments;
|
|||
|
|||
#pragma message("Remember to update the .desktop file's version, if making any significant changes to UVS.")
|
|||
|
|||
int main(int ArgC, char* ArgV[])
|
|||
{
|
|||
for (int Idx = 1; Idx < ArgC; Idx++)
|
|||
{
|
|||
GArguments.Add(ArgV[Idx]);
|
|||
}
|
|||
|
|||
return CommonUnixMain(1, ArgV, &UnrealVersionSelectorMain);
|
|||
}
|