Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

26 lines
469 B
C++

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