mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
20 lines
434 B
C++
20 lines
434 B
C++
#include "FortAbilityTestObserver.h"
|
|
|
|
bool AFortAbilityTestObserver::WasAbilityTagActivated(const FGameplayTag& AbilityTag) const {
|
|
return false;
|
|
}
|
|
|
|
bool AFortAbilityTestObserver::WasAbilityActivated(UGameplayAbility* Ability) const {
|
|
return false;
|
|
}
|
|
|
|
void AFortAbilityTestObserver::StopObserving() {
|
|
}
|
|
|
|
void AFortAbilityTestObserver::StartObserving(APawn* Pawn) {
|
|
}
|
|
|
|
AFortAbilityTestObserver::AFortAbilityTestObserver() {
|
|
}
|
|
|