Files
UnrealEngine/Engine/Plugins/Media/PixelStreaming2/Source/PixelStreaming2Input/Internal/DefaultDataProtocol.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

21 lines
551 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Templates/SharedPointer.h"
#include "IPixelStreaming2DataProtocol.h"
namespace UE::PixelStreaming2Input
{
/**
* @return The default "ToStreamer" data protocol.
*/
PIXELSTREAMING2INPUT_API TSharedPtr<IPixelStreaming2DataProtocol> GetDefaultToStreamerProtocol();
/**
* @return The default "FromStreamer" data protocol.
*/
PIXELSTREAMING2INPUT_API TSharedPtr<IPixelStreaming2DataProtocol> GetDefaultFromStreamerProtocol();
} // namespace UE::PixelStreaming2Input