You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Service status & controls - Version information - GC status & control Depends on https://p4-swarm.epicgames.net/reviews/23337377 #rb matt.peters #preflight 638fa4a167018b14b5be45b5 [CL 23415939 by Zousar Shaker in ue5-main branch]
23 lines
407 B
C++
23 lines
407 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Templates/SharedPointer.h"
|
|
|
|
namespace UE::Zen { class FZenServiceInstance; }
|
|
|
|
namespace UE::Zen
|
|
{
|
|
|
|
class FServiceInstanceManager
|
|
{
|
|
public:
|
|
TSharedPtr<FZenServiceInstance> GetZenServiceInstance() const;
|
|
private:
|
|
mutable uint16 CurrentPort = 0;
|
|
mutable TSharedPtr<FZenServiceInstance> CurrentInstance;
|
|
};
|
|
|
|
} // namespace UE::Zen
|
|
|