25 lines
539 B
C
25 lines
539 B
C
|
// Fill out your copyright notice in the Description page of Project Settings.
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "CoreMinimal.h"
|
||
|
#include "../StatusEffect.h"
|
||
|
#include "the_twilight_abyss/TurnBasedCombatV2/TurnBaseCombatV2.h"
|
||
|
#include "StrengthBuff.generated.h"
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
*/
|
||
|
UCLASS()
|
||
|
class THE_TWILIGHT_ABYSS_API UStrengthBuff : public UStatusEffect
|
||
|
{
|
||
|
GENERATED_BODY()
|
||
|
|
||
|
public:
|
||
|
virtual void Invoke(AActor* Character, float TimeOfExpiry) override;
|
||
|
virtual void OnExpiry(AActor* Character) override;
|
||
|
|
||
|
protected:
|
||
|
ATurnBaseCombatV2* CombatSystem;
|
||
|
};
|