Unrealzilla/Source/Unrealzilla/Private/UnrealzillaGlobalSettings.cpp
Jamie Greunbaum fd85e22428 - ServerREST renamed to ServerAPI because it makes a lot more sense that way.
- A bunch of files converted from UTF-16 to UTF-8.
2023-03-31 14:47:16 -04:00

27 lines
587 B
C++

// ©2022 Batty Bovine Productions, LLC. All Rights Reserved.
#include "UnrealzillaGlobalSettings.h"
void UUnrealzillaGlobalSettings::PostInitProperties()
{
Super::PostInitProperties();
}
FName UUnrealzillaGlobalSettings::GetCategoryName() const
{
return FName(TEXT("Plugins"));
}
#if WITH_EDITOR
void UUnrealzillaGlobalSettings::PostEditChangeProperty(FPropertyChangedEvent &PropertyChangedEvent)
{
Super::PostEditChangeProperty(PropertyChangedEvent);
if (PropertyChangedEvent.Property)
{
this->ExportValuesToConsoleVariables(PropertyChangedEvent.Property);
}
}
#endif