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