AzureAbyss/Source/the_twilight_abyss/TurnBasedCombatV2/StatusEffects/Thorns.cpp

15 lines
283 B
C++
Raw Normal View History

2023-02-27 04:55:12 +00:00
// Fill out your copyright notice in the Description page of Project Settings.
#include "Thorns.h"
void UThorns::Invoke(AActor* Character, float TimeOfExpiry)
{
Super::Invoke(Character, TimeOfExpiry);
}
void UThorns::OnExpiry(AActor* Character)
{
Super::OnExpiry(Character);
}