13 lines
284 B
C++
13 lines
284 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "SceneStateTransitionGraphSchema.h"
|
|
#include "SceneStateConduitGraphSchema.generated.h"
|
|
|
|
UCLASS(MinimalAPI)
|
|
class USceneStateConduitGraphSchema : public USceneStateTransitionGraphSchema
|
|
{
|
|
GENERATED_BODY()
|
|
};
|