Files
FNGameProj/Source/FortniteGame/Private/FortAIEncounterRiftManager.cpp
2024-01-21 00:41:14 +01:00

19 lines
562 B
C++

#include "FortAIEncounterRiftManager.h"
AFortMission* UFortAIEncounterRiftManager::GetAssociatedMission() const {
return NULL;
}
UFortAIEncounterRiftManager::UFortAIEncounterRiftManager() {
this->MyEncounter = NULL;
this->AIDirector = NULL;
this->UpdateIntervalTimeSeconds = 0.10f;
this->NumRiftsToUse = 0;
this->MinRiftsToUse = 0;
this->ExtraSpawnLocationPercentage = 0.00f;
this->RiftClassTemplate = NULL;
this->LastObjectiveBatchPathCostUpdateTime = -1000.00f;
this->LastPlayerBatchPathCostUpdateTime = -1000.00f;
}