You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
19 lines
445 B
C++
19 lines
445 B
C++
// Copyright 1998-2017 Epic Games, Inc. All Rights Reserved.
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
|
|
class ISlateMetaData;
|
|
|
|
/**
|
|
* A static helper class which is used to easily construct various types of AutomationDriver specific SlateMetaData.
|
|
*/
|
|
class SLATE_API FDriverMetaData
|
|
{
|
|
public:
|
|
|
|
/**
|
|
* @return the automation driver specific metadata type for specifying an Id for a widget
|
|
*/
|
|
static TSharedRef<ISlateMetaData> Id(FName Tag);
|
|
}; |