Files
UnrealEngine/Engine/Source/Developer/Datasmith/DatasmithExporterUI/Public/IDirectLinkUI.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

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;
};