22 lines
532 B
C++
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;
|
|
} |