You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Connection/Messages/Settings windows and dialogs now remember position and size within the same session #jira UE-102277 #rb JeanLuc.Corenthin #preflight 62c83df7f671e8d2facfa06c [CL 21008424 by Balazs Toereki in ue5-main branch]
22 lines
502 B
C++
22 lines
502 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "HAL/Platform.h"
|
|
|
|
class IDirectLinkUI
|
|
{
|
|
public:
|
|
/**
|
|
* Open the direct link connections window or move it up front if it's already open
|
|
*/
|
|
virtual void SetStreamWindowCenter(int InCenterX, int InCenterY) = 0;
|
|
virtual void OpenDirectLinkStreamWindow() = 0;
|
|
|
|
/**
|
|
* Get the user defined cache directory for direct link
|
|
*/
|
|
virtual const TCHAR* GetDirectLinkCacheDirectory() = 0;
|
|
|
|
virtual ~IDirectLinkUI() = default;
|
|
}; |