Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

29 lines
529 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Templates/SharedPointer.h"
class ISlateStyle;
class FSlateStyleSet;
#define UE_API LOGVISUALIZER_API
/**
* Implements the visual style of LogVisualizer.
*/
class FLogVisualizerStyle
{
public:
static void Initialize();
static void Shutdown();
UE_API static const ISlateStyle& Get();
UE_API static FName GetStyleSetName();
private:
static TSharedRef<FSlateStyleSet> Create();
static TSharedPtr<FSlateStyleSet> StyleInstance;
};
#undef UE_API