Files
UnrealEngine/Engine/Plugins/Chooser/Source/ChooserEditor/Private/ChooserEditorStyle.h
2025-05-18 13:04:45 +08:00

25 lines
396 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Styling/SlateStyle.h"
namespace UE::ChooserEditor
{
class FChooserEditorStyle : FSlateStyleSet
{
public:
FChooserEditorStyle();
static void Initialize();
static void Shutdown();
static const ISlateStyle& Get();
private:
static TSharedPtr< FChooserEditorStyle > StyleInstance;
};
}