mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
14 lines
460 B
C++
14 lines
460 B
C++
#include "AIAssignmentInfo.h"
|
|
|
|
FAIAssignmentInfo::FAIAssignmentInfo() {
|
|
this->TimeCurrentGoalWasChosen = 0.00f;
|
|
this->TimeExitedLastAssignmentOfType[0] = 0.00f;
|
|
this->TimeExitedLastAssignmentOfType[1] = 0.00f;
|
|
this->TimeExitedLastAssignmentOfType[2] = 0.00f;
|
|
this->TimeExitedLastAssignmentOfType[3] = 0.00f;
|
|
this->bWaitingForQueryResponse = false;
|
|
this->bSuppressGoalUpdates = false;
|
|
this->bReportEnemyGoalSelection = false;
|
|
}
|
|
|