mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
15 lines
444 B
C++
15 lines
444 B
C++
#include "AthenaAIController.h"
|
|
|
|
AAthenaAIController::AAthenaAIController() {
|
|
PrimaryMeleeAttackAbilityInstance = NULL;
|
|
PrimaryRangedAttackAbilityInstance = NULL;
|
|
CheapFlyingNavPointHorizontalGridRatio = 1;
|
|
CheapFlyingNavNavPointVerticalGridRatio = 1;
|
|
bEnableCheapFlyingNavigation = false;
|
|
bAllowBacktrackPathfinding = true;
|
|
bIsGoalRequiredForBehavior = true;
|
|
SecondaryGoalActor = NULL;
|
|
AthenaPFC = NULL;
|
|
}
|
|
|