Manuel Wagner 7d022bae76 Added Lyra
2022-05-23 20:41:30 +02:00

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;
};