12 lines
280 B
C++
Executable file
12 lines
280 B
C++
Executable file
#pragma once
|
|
#include "CoreMinimal.h"
|
|
#include "StandardExitStrategy.h"
|
|
#include "ChaseIfTargetSurvived.generated.h"
|
|
|
|
UCLASS(Blueprintable, EditInlineNew)
|
|
class UChaseIfTargetSurvived : public UStandardExitStrategy {
|
|
GENERATED_BODY()
|
|
public:
|
|
UChaseIfTargetSurvived();
|
|
};
|
|
|