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

31 lines
685 B
C
Raw Permalink Normal View History

2022-05-23 18:41:30 +00:00
// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "GameplayEffectExecutionCalculation.h"
2022-09-13 07:18:28 +00:00
#include "UObject/UObjectGlobals.h"
2022-05-23 18:41:30 +00:00
#include "LyraDamageExecution.generated.h"
2022-09-13 07:18:28 +00:00
class UObject;
2022-05-23 18:41:30 +00:00
/**
* ULyraDamageExecution
*
* Execution used by gameplay effects to apply damage to the health attributes.
*/
UCLASS()
class ULyraDamageExecution : public UGameplayEffectExecutionCalculation
{
GENERATED_BODY()
public:
ULyraDamageExecution();
protected:
virtual void Execute_Implementation(const FGameplayEffectCustomExecutionParameters& ExecutionParams, FGameplayEffectCustomExecutionOutput& OutExecutionOutput) const override;
};