You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
22 lines
359 B
C++
22 lines
359 B
C++
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
#if defined(PLATFORM_ANDROID)
|
||
|
|
#include "TestRunner.h"
|
||
|
|
|
||
|
|
const char* AndroidPath;
|
||
|
|
|
||
|
|
extern "C" int LowLevelTestsMain(int argc, const char* argv[])
|
||
|
|
{
|
||
|
|
return RunTests(argc, argv);
|
||
|
|
}
|
||
|
|
|
||
|
|
const char* GetCacheDirectory()
|
||
|
|
{
|
||
|
|
return AndroidPath;
|
||
|
|
}
|
||
|
|
|
||
|
|
const char* GetProcessExecutablePath()
|
||
|
|
{
|
||
|
|
return AndroidPath;
|
||
|
|
}
|
||
|
|
#endif
|