You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
21 lines
431 B
C++
21 lines
431 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 OpenDirectLinkStreamWindow() = 0;
|
|
|
|
/**
|
|
* Get the user defined cache directory for direct link
|
|
*/
|
|
virtual const TCHAR* GetDirectLinkCacheDirectory() = 0;
|
|
|
|
virtual ~IDirectLinkUI() = default;
|
|
}; |