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

31 lines
502 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Templates/SharedPointer.h"
#define UE_API BSPMODE_API
class ISlateStyle;
/**
* BSP mode slate style
*/
class FBspModeStyle
{
public:
static UE_API void Initialize();
static UE_API void Shutdown();
static UE_API const ISlateStyle& Get();
static UE_API const FName& GetStyleSetName();
private:
/** Singleton instances of this style. */
static UE_API TSharedPtr< class FSlateStyleSet > StyleSet;
};
#undef UE_API