Files
UnrealEngine/Engine/Source/Editor/AnimGraph/Public/IAnimBlueprintCompilerHandler.h
2025-05-18 13:04:45 +08:00

15 lines
454 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
class UE_DEPRECATED(5.0, "IAnimBlueprintCompilerHandler is deprecated, use UAnimBlueprintExtension_PropertyAccess instead") IAnimBlueprintCompilerHandler;
/** Empty base class for handlers that are maintained for the lifetime of the compiler context */
class ANIMGRAPH_API IAnimBlueprintCompilerHandler
{
public:
virtual ~IAnimBlueprintCompilerHandler() {}
};