mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
27 lines
433 B
C++
27 lines
433 B
C++
#include "FortAIBuddy.h"
|
|
|
|
void AFortAIBuddy::StopItemDrain() {
|
|
}
|
|
|
|
bool AFortAIBuddy::StartItemDrain(AFortPlayerPawn* PlayerPawn) {
|
|
return false;
|
|
}
|
|
|
|
void AFortAIBuddy::RemoveTagListener(AActor* TargetActor, const FGameplayTag Tag) {
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void AFortAIBuddy::AddTagListener(AActor* TargetActor, const FGameplayTag Tag) {
|
|
}
|
|
|
|
AFortAIBuddy::AFortAIBuddy() {
|
|
ConsumableItem = NULL;
|
|
DrainPawn = NULL;
|
|
DrainItem = NULL;
|
|
}
|
|
|