Files
UnrealEngine/Engine/Plugins/MovieScene/MovieRenderPipeline/Source/MovieRenderPipelineEditor/Private/MovieRenderPipelineStyle.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

25 lines
494 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Styling/SlateStyle.h"
#include "Styling/SlateStyleRegistry.h"
/**
* Slate style set that defines all the styles for the Movie Render Pipeline UI
*/
class FMovieRenderPipelineStyle
: public FSlateStyleSet
{
public:
static FName StyleName;
/** Access the singleton instance for this style set */
static FMovieRenderPipelineStyle& Get();
private:
FMovieRenderPipelineStyle();
~FMovieRenderPipelineStyle();
};