lyra_game_ue/Source/LyraGame/Hotfix/LyraRuntimeOptions.cpp
Goran Lazarevski 3bcab085f8 Initial commit
2025-03-20 11:06:26 +01:00

24 lines
538 B
C++

// 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;
}