Files
UnrealEngine/Engine/Plugins/Animation/TweeningUtils/Source/TweeningUtilsEditor/Private/TweeningUtilsStyle.h
2025-05-18 13:04:45 +08:00

21 lines
373 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Styling/SlateStyle.h"
namespace UE::TweeningUtilsEditor
{
/** Style for the widgets and commands in this module. */
class FTweeningUtilsStyle final
: public FSlateStyleSet
{
public:
static FTweeningUtilsStyle& Get();
FTweeningUtilsStyle();
virtual ~FTweeningUtilsStyle() override;
};
}