2022-05-06 08:23:48 -04:00
|
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
|
|
#include "SmartObjectDefinition.h"
|
2022-05-10 10:15:17 -04:00
|
|
|
|
#include "StateTreeReference.h"
|
2022-05-06 08:23:48 -04:00
|
|
|
|
#include "GameplayInteractionSmartObjectBehaviorDefinition.generated.h"
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* SmartObject behavior definition for the GameplayInteractions
|
|
|
|
|
|
*/
|
|
|
|
|
|
UCLASS()
|
|
|
|
|
|
class GAMEPLAYINTERACTIONSMODULE_API UGameplayInteractionSmartObjectBehaviorDefinition : public USmartObjectBehaviorDefinition
|
|
|
|
|
|
{
|
|
|
|
|
|
GENERATED_BODY()
|
|
|
|
|
|
public:
|
2022-08-18 12:36:08 -04:00
|
|
|
|
UPROPERTY(EditDefaultsOnly, Category="", meta=(Schema="/Script/GameplayInteractionsModule.GameplayInteractionStateTreeSchema"))
|
2022-05-10 10:15:17 -04:00
|
|
|
|
FStateTreeReference StateTreeReference;
|
|
|
|
|
|
};
|