Files
UnrealEngine/Engine/Source/Editor/StorageServerWidgets/Private/BuildServiceInstanceManager.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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