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

31 lines
685 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "GameplayEffectExecutionCalculation.h"
#include "UObject/UObjectGlobals.h"
#include "LyraDamageExecution.generated.h"
class UObject;
/**
* 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;
};