Files
UnrealEngine/Engine/Source/Editor/StorageServerWidgets/Private/BuildServiceInstanceManager.cpp
2025-05-18 13:04:45 +08:00

20 lines
418 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "BuildServiceInstanceManager.h"
#include "Experimental/BuildServerInterface.h"
namespace UE::Zen::Build
{
TSharedPtr<FBuildServiceInstance> FServiceInstanceManager::GetBuildServiceInstance() const
{
if (!CurrentInstance)
{
CurrentInstance = MakeShared<FBuildServiceInstance>();
}
return CurrentInstance;
}
} // namespace UE::StorageService::Build