Files
UnrealEngineUWP/Engine/Source/Programs/UnrealVersionSelector/Private/Linux/UnrealVersionSelectorLinuxMain.cpp
Robert Manuszewski 2752c82adc Merging //UE4/Dev-Main @ 4664414 to Dev-Core (//UE4/Dev-Core)
#rb none

[CL 4675693 by Robert Manuszewski in Dev-Core branch]
2019-01-02 00:55:51 -05:00

21 lines
500 B
C++

// Copyright 1998-2019 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);
}