28 lines
647 B
C++
28 lines
647 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "GameplayEffectExecutionCalculation.h"
|
|
#include "LyraHealExecution.generated.h"
|
|
|
|
|
|
/**
|
|
* ULyraHealExecution
|
|
*
|
|
* Execution used by gameplay effects to apply healing to the health attributes.
|
|
*/
|
|
UCLASS()
|
|
class ULyraHealExecution : public UGameplayEffectExecutionCalculation
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
|
|
ULyraHealExecution();
|
|
|
|
protected:
|
|
|
|
virtual void Execute_Implementation(const FGameplayEffectCustomExecutionParameters& ExecutionParams, FGameplayEffectCustomExecutionOutput& OutExecutionOutput) const override;
|
|
};
|