21 lines
425 B
C++
21 lines
425 B
C++
// Copyright Ralpha Team. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Styling/SlateStyle.h"
|
|
|
|
class FRalphaEditorStyle
|
|
{
|
|
public:
|
|
static void Initialize();
|
|
static void Shutdown();
|
|
static void ReloadTextures();
|
|
static const ISlateStyle& Get();
|
|
static FName GetStyleSetName();
|
|
|
|
private:
|
|
static TSharedRef<class FSlateStyleSet> Create();
|
|
static TSharedPtr<class FSlateStyleSet> StyleInstance;
|
|
};
|