Files
UnrealEngine/Engine/Plugins/Animation/BlendStack/Source/Editor/Public/AnimationBlendStackGraphSchema.h
2025-05-18 13:04:45 +08:00

17 lines
413 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "AnimationGraphSchema.h"
#include "AnimationBlendStackGraphSchema.generated.h"
UCLASS(MinimalAPI)
class UAnimationBlendStackGraphSchema : public UAnimationGraphSchema
{
GENERATED_BODY()
//~ Begin UEdGraphSchema Interface.
virtual void CreateDefaultNodesForGraph(UEdGraph& Graph) const override;
//~ End UEdGraphSchema Interface.
};