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