mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-13 08:02:23 -07:00
18 lines
444 B
C++
18 lines
444 B
C++
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "BehaviorTree/Tasks/BTTask_BlueprintBase.h"
|
|
#include "CogSampleBTTask_BlueprintBase.generated.h"
|
|
|
|
UCLASS(Abstract, Blueprintable)
|
|
class UCogSampleBTTask_BlueprintBase : public UBTTask_BlueprintBase
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
|
|
virtual FString GetStaticDescription() const override;
|
|
|
|
UFUNCTION(BlueprintImplementableEvent, Category = AI)
|
|
FString GetCustomStaticDescription() const;
|
|
}; |