October3d55/M/LGUI/Source/LGUIEditor/Public/LGUIEditorStyle.h

29 lines
530 B
C++

// Copyright 2019-Present LexLiu. All Rights Reserved.
#include "CoreMinimal.h"
#pragma once
/** */
class FLGUIEditorStyle
{
public:
static void Initialize();
static void Shutdown();
/** reloads textures used by slate renderer */
static void ReloadTextures();
/** @return The Slate style set for the Shooter game */
static const ISlateStyle& Get();
static FName GetStyleSetName();
private:
static TSharedRef< class FSlateStyleSet > Create();
private:
static TSharedPtr< class FSlateStyleSet > StyleInstance;
};