Files
UnrealEngineUWP/Engine/Source/Editor/AnimGraph/Classes/AnimationStateGraphSchema.h
Mikolaj Sieluzycki f25a030f9f Fix for build break caused by CL#2055369.
[CL 2055682 by Mikolaj Sieluzycki in Main branch]
2014-04-24 14:34:01 -04:00

17 lines
537 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#pragma once
#include "AnimationGraphSchema.h"
#include "AnimationStateGraphSchema.generated.h"
UCLASS(MinimalAPI)
class UAnimationStateGraphSchema : public UAnimationGraphSchema
{
GENERATED_UCLASS_BODY()
// Begin UEdGraphSchema interface.
virtual void CreateDefaultNodesForGraph(UEdGraph& Graph) const OVERRIDE;
virtual void GetGraphDisplayInformation(const UEdGraph& Graph, /*out*/ FGraphDisplayInfo& DisplayInfo) const OVERRIDE;
// End UEdGraphSchema interface.
};