Files
UnrealEngine/Engine/Source/Editor/AnimGraph/Private/AnimationStateMachineGraph.cpp
2025-05-18 13:04:45 +08:00

19 lines
433 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "AnimationStateMachineGraph.h"
#define LOCTEXT_NAMESPACE "AnimationGraph"
/////////////////////////////////////////////////////
// UAnimationStateMachineGraph
UAnimationStateMachineGraph::UAnimationStateMachineGraph(const FObjectInitializer& ObjectInitializer)
: Super(ObjectInitializer)
{
bAllowDeletion = false;
bAllowRenaming = true;
}
#undef LOCTEXT_NAMESPACE