mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
12 lines
329 B
C++
12 lines
329 B
C++
#include "AthenaNavInvokerBox.h"
|
|
#include "NavigationInvokerComponent.h"
|
|
|
|
void AAthenaNavInvokerBox::SetInvokerEnabled(bool bEnable) {
|
|
}
|
|
|
|
AAthenaNavInvokerBox::AAthenaNavInvokerBox() {
|
|
this->GenerationRange = 5000.00f;
|
|
this->InvokerComp = CreateDefaultSubobject<UNavigationInvokerComponent>(TEXT("InvokerComponent"));
|
|
}
|
|
|