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

23 lines
375 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Styling/SlateStyle.h"
#define UE_API METAHUMANTOOLKIT_API
class FMetaHumanToolkitStyle
: public FSlateStyleSet
{
public:
static UE_API FMetaHumanToolkitStyle& Get();
static UE_API void Register();
static UE_API void Unregister();
private:
UE_API FMetaHumanToolkitStyle();
};
#undef UE_API