Files
UnrealEngineUWP/Engine/Plugins/Runtime/StateTree/Source/StateTreeModule/Private/StateTreeSchema.cpp

10 lines
273 B
C++
Raw Normal View History

// Copyright Epic Games, Inc. All Rights Reserved.
#include "StateTreeSchema.h"
#include "Blueprint/StateTreeItemBlueprintBase.h"
bool UStateTreeSchema::IsChildOfBlueprintBase(const UClass* InClass) const
{
return InClass->IsChildOf<UStateTreeItemBlueprintBase>();
}