mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-13 00:01:37 -07:00
23 lines
562 B
C++
23 lines
562 B
C++
#pragma once
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "GameplayModMagnitudeCalculation.h"
|
|
#include "GameplayEffectTypes.h"
|
|
#include "CogSampleModifierCalculation_Cooldown.generated.h"
|
|
|
|
UCLASS(BlueprintType, Blueprintable)
|
|
class UCogSampleModifierCalculation_Cooldown : public UGameplayModMagnitudeCalculation
|
|
{
|
|
GENERATED_BODY()
|
|
|
|
public:
|
|
|
|
UCogSampleModifierCalculation_Cooldown();
|
|
|
|
float CalculateBaseMagnitude_Implementation(const FGameplayEffectSpec& Spec) const override;
|
|
|
|
private:
|
|
|
|
FGameplayEffectAttributeCaptureDefinition CooldownReductionDef;
|
|
};
|