Files
UnrealEngine/Engine/Source/Editor/Persona/Public/IHasPersonaToolkit.h
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

14 lines
316 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
/** Interface implemented by objects that hold a persona toolkit */
class IHasPersonaToolkit
{
public:
/** Get the toolkit held by this object */
virtual TSharedRef<class IPersonaToolkit> GetPersonaToolkit() const = 0;
};