// 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 GetPersonaToolkit() const = 0; };