You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
22 lines
639 B
C++
22 lines
639 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "LiveLinkSourceFactory.h"
|
|
#include "LiveLinkWindowsMixedRealityHandTrackingSourceFactory.generated.h"
|
|
|
|
UCLASS()
|
|
class ULiveLinkWindowsMixedRealityHandTrackingSourceFactory : public ULiveLinkSourceFactory
|
|
{
|
|
public:
|
|
|
|
GENERATED_BODY()
|
|
|
|
virtual FText GetSourceDisplayName() const;
|
|
virtual FText GetSourceTooltip() const;
|
|
|
|
virtual EMenuType GetMenuType() const override;
|
|
virtual TSharedPtr<ILiveLinkSource> CreateSource(const FString& ConnectionString) const override;
|
|
|
|
TSharedPtr<class SLiveLinkWindowsMixedRealityHandTrackingSourceEditor> ActiveSourceEditor;
|
|
}; |