You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#ROBOMERGE-SOURCE: CL 13181058 via CL 13181060 via CL 13181063 #ROBOMERGE-BOT: RELEASE (Release-Engine-Staging -> Main) (v688-13145358) [CL 13181068 by ori cohen in Main branch]
16 lines
303 B
C++
16 lines
303 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "GeometryCollection/GeometryCollectionTestResponse.h"
|
|
|
|
namespace GeometryCollectionTest
|
|
{
|
|
|
|
void ExampleResponse::ExpectTrue(bool Condition, FString Reason)
|
|
{
|
|
ErrorFlag |= !Condition;
|
|
if (!Condition)
|
|
{
|
|
Reasons.Add(Reason);
|
|
}
|
|
}
|
|
} |