Files
UnrealEngineUWP/Engine/Source/Editor/AnimGraph/Private/AnimationStateMachineGraph.cpp

19 lines
443 B
C++
Raw Normal View History

// Copyright 1998-2019 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