| // Copyright Epic Games, Inc. All Rights Reserved. | |
| 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; | |
| }; | |