Files
UnrealEngine/Engine/Source/Editor/Persona/Public/IHasPersonaToolkit.h
2025-05-18 13:04:45 +08: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;
};