unitysamples / LyraStarterGame /Source /LyraGame /Hotfix /LyraRuntimeOptions.cpp
Alexhas2's picture
Add files using upload-large-folder tool
7fd553e verified
// Copyright Epic Games, Inc. All Rights Reserved.
#include "LyraRuntimeOptions.h"
#include "UObject/Class.h"
#include UE_INLINE_GENERATED_CPP_BY_NAME(LyraRuntimeOptions)
ULyraRuntimeOptions::ULyraRuntimeOptions()
{
OptionCommandPrefix = TEXT("ro");
}
ULyraRuntimeOptions* ULyraRuntimeOptions::GetRuntimeOptions()
{
return GetMutableDefault<ULyraRuntimeOptions>();
}
const ULyraRuntimeOptions& ULyraRuntimeOptions::Get()
{
const ULyraRuntimeOptions& RuntimeOptions = *GetDefault<ULyraRuntimeOptions>();
return RuntimeOptions;
}