lyra_game_ue/Source/LyraGame/Hotfix/LyraRuntimeOptions.cpp

24 lines
538 B
C++
Raw Normal View History

2025-03-20 11:06:26 +01:00
// 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;
}