18 lines
348 B
C++
18 lines
348 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "ToolMenuContext.h"
|
|
#include "AnimationToolMenuContext.generated.h"
|
|
|
|
class IAnimationEditor;
|
|
|
|
UCLASS()
|
|
class ANIMATIONEDITOR_API UAnimationToolMenuContext : public UObject
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
TWeakPtr<IAnimationEditor> AnimationEditor;
|
|
}; |