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

15 lines
428 B
C++

#include "AthenaNavSystem.h"
void UAthenaNavSystem::UnregisterNavGenerationObserver(USceneComponent* Component) {
}
void UAthenaNavSystem::RegisterNavGenerationObserver(USceneComponent* Component, FOnNavGenerationFinished Event) {
}
UAthenaNavSystem::UAthenaNavSystem() {
this->bUseBuildingGridAsNavigableSpace = false;
this->NavGenerationObserverCheckInterval = 1.00f;
this->NavOctTreeExclusionBounds = NULL;
}