RealtimeStyleTransferRuntime/Source/LyraGame/AbilitySystem/Executions/LyraHealExecution.h

28 lines
647 B
C
Raw Normal View History

2022-05-23 18:41:30 +00:00
// 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;
};