Files
2026-04-22 15:51:07 +02:00

30 lines
852 B
C++

#include "FortPoiManager.h"
#include "Net/UnrealNetwork.h"
void AFortPoiManager::OnRep_PoiTagContainerTable() {
}
void AFortPoiManager::OnRep_PoiGridForDebugDisplay() {
}
void AFortPoiManager::OnRep_FortPoiGridInfo() {
}
void AFortPoiManager::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(AFortPoiManager, FortPoiGridInfo);
DOREPLIFETIME(AFortPoiManager, PoiTagContainerTable);
DOREPLIFETIME(AFortPoiManager, PoiTagContainerTableSize);
DOREPLIFETIME(AFortPoiManager, PoiGridForDebugDisplay);
}
AFortPoiManager::AFortPoiManager() {
this->TestPlayerIndex = 0;
this->MaxNumTestsPerFrame = 5;
this->PoiTagContainerTableSize = -1;
this->bHasInitalized = false;
this->PoiGridPrevSizeForDebugDisplay = 0;
}