Files
UnrealEngineUWP/Engine/Source/Developer/AutomationController/Private/AutomationControllerSettings.cpp

17 lines
456 B
C++
Raw Normal View History

// Copyright Epic Games, Inc. All Rights Reserved.
#include "AutomationControllerSettings.h"
UAutomationControllerSettings::UAutomationControllerSettings(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
, bSuppressLogErrors(false)
, bSuppressLogWarnings(false)
, bTreatLogErrorsAsTestErrors(true)
, bTreatLogWarningsAsTestErrors(true)
, GameInstanceLostTimerSeconds(300.0f)
, bResetTelemetryStorageOnNewSession(false)
{
}