Files
UnrealEngine/Engine/Source/Editor/StorageServerWidgets/Internal/ZenServiceInstanceManager.h
2025-05-18 13:04:45 +08:00

23 lines
432 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Templates/SharedPointer.h"
namespace UE::Zen { class FZenServiceInstance; }
namespace UE::Zen
{
class STORAGESERVERWIDGETS_API FServiceInstanceManager
{
public:
TSharedPtr<FZenServiceInstance> GetZenServiceInstance() const;
private:
mutable uint16 CurrentPort = 0;
mutable TSharedPtr<FZenServiceInstance> CurrentInstance;
};
} // namespace UE::Zen