Files
UnrealEngineUWP/Engine/Source/Developer/TreeMap/Public/TreeMapStyle.h
T

27 lines
456 B
C++
Raw Normal View History

2019-12-26 15:32:37 -05:00
// Copyright Epic Games, Inc. All Rights Reserved.
2015-04-22 15:58:21 -04:00
#pragma once
#include "CoreMinimal.h"
#include "Styling/SlateStyle.h"
2015-04-22 15:58:21 -04:00
/**
* Style data for STreeMap
*/
class TREEMAP_API FTreeMapStyle
{
public:
static void Initialize();
static void Shutdown();
static const ISlateStyle& Get();
static FName GetStyleSetName();
private:
static TSharedRef< class FSlateStyleSet > Create();
private:
static TSharedPtr< class FSlateStyleSet > StyleInstance;
};