You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
* Fixed usage of wrong define name * Renamed options in batchfiles using old options * Removed old code not used * Added one more test to the list of "all tests" [CL 30019208 by henrik karlsson in ue5-main branch]
13 lines
186 B
C++
13 lines
186 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "UbaTestAll.h"
|
|
|
|
int wmain(int argc, wchar_t* argv[])
|
|
{
|
|
using namespace uba;
|
|
|
|
if (!RunAllTests())
|
|
return -1;
|
|
return 0;
|
|
}
|