Manuel Wagner 7d022bae76 Added Lyra
2022-05-23 20:41:30 +02:00

19 lines
465 B
C++

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