mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
19 lines
562 B
C++
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;
|
|
}
|
|
|