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

31 lines
459 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Styling/SlateStyle.h"
/**
*
*/
class FPluginStyleSet : public FSlateStyleSet
{
public:
FPluginStyleSet(const FName& InPluginName, const FName& InStyleSetName = NAME_None);
};
/**
*
*/
class FSearchStyle : public FPluginStyleSet
{
public:
/** Access the singleton instance for this style set */
static FSearchStyle& Get();
private:
FSearchStyle();
~FSearchStyle();
};