mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
14 lines
392 B
C++
14 lines
392 B
C++
#include "AIAssignmentInfo.h"
|
|
|
|
FAIAssignmentInfo::FAIAssignmentInfo() {
|
|
TimeCurrentGoalWasChosen = 1;
|
|
TimeExitedLastAssignmentOfType[0] = 1;
|
|
TimeExitedLastAssignmentOfType[1] = 1;
|
|
TimeExitedLastAssignmentOfType[2] = 1;
|
|
TimeExitedLastAssignmentOfType[3] = 1;
|
|
bWaitingForQueryResponse = false;
|
|
bSuppressGoalUpdates = false;
|
|
bReportEnemyGoalSelection = false;
|
|
}
|
|
|