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]
19 lines
388 B
C++
19 lines
388 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
namespace GeometryCollectionTest
|
|
{
|
|
class ExampleResponse
|
|
{
|
|
public:
|
|
ExampleResponse() : ErrorFlag(false) {}
|
|
virtual ~ExampleResponse() {}
|
|
virtual void ExpectTrue(bool, FString Reason = "");
|
|
virtual bool HasError() { return ErrorFlag; }
|
|
TArray<FString> Reasons;
|
|
bool ErrorFlag;
|
|
};
|
|
|
|
} |