mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
14 lines
402 B
C++
14 lines
402 B
C++
#include "FortAIDataProvider_Pawn.h"
|
|
|
|
UFortAIDataProvider_Pawn::UFortAIDataProvider_Pawn() {
|
|
this->SightRadius = 0.00f;
|
|
this->HearingRadius = 0.00f;
|
|
this->ViewLocationOffsetFromGround = 0.00f;
|
|
this->MaxStepHeight = 0.00f;
|
|
this->TetheredBoxWidth = 0.00f;
|
|
this->TetheredBoxHeight = 0.00f;
|
|
this->TetheredBoxEQSGridSize = 0.00f;
|
|
this->TetheredBoxEQSSpaceBetween = 0.00f;
|
|
}
|
|
|