2022-09-13 09:18:28 +02:00

22 lines
532 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "LyraRuntimeOptions.h"
#include "Containers/UnrealString.h"
#include "HAL/Platform.h"
ULyraRuntimeOptions::ULyraRuntimeOptions()
{
OptionCommandPrefix = TEXT("ro");
}
ULyraRuntimeOptions* ULyraRuntimeOptions::GetRuntimeOptions()
{
return GetMutableDefault<ULyraRuntimeOptions>();
}
const ULyraRuntimeOptions& ULyraRuntimeOptions::Get()
{
const ULyraRuntimeOptions& RuntimeOptions = *GetDefault<ULyraRuntimeOptions>();
return RuntimeOptions;
}