Files
UnrealEngineUWP/Engine/Source/Editor/SkeletonEditor/Public/ISkeletonEditor.h
Keith Yerex 4bc7535db0 fix get references to skeleton notify from skeleton editor
#review thomas.sarakanen
#jira UE-97232

[CL 15749744 by Keith Yerex in ue5-main branch]
2021-03-19 14:55:32 -04:00

17 lines
399 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "PersonaAssetEditorToolkit.h"
#include "IHasPersonaToolkit.h"
class IAnimationSequenceBrowser;
class ISkeletonEditor : public FPersonaAssetEditorToolkit, public IHasPersonaToolkit
{
public:
/** Get the asset browser we host */
virtual IAnimationSequenceBrowser* GetAssetBrowser() const = 0;
};