Files
2025-05-18 13:04:45 +08:00

21 lines
397 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:
TWEENINGUTILSEDITOR_API static FTweeningUtilsStyle& Get();
FTweeningUtilsStyle();
virtual ~FTweeningUtilsStyle() override;
};
}