// Copyright Epic Games, Inc. All Rights Reserved. #include "WorldBrowserConfig.h" TObjectPtr UWorldBrowserConfig::Instance = nullptr; void UWorldBrowserConfig::Initialize() { if(!Instance) { Instance = NewObject(); Instance->AddToRoot(); Instance->LoadEditorConfig(); } }