mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 19:27:55 +00:00
16 lines
504 B
C++
16 lines
504 B
C++
#include "AIBotSkills.h"
|
|
|
|
FAIBotSkills::FAIBotSkills() {
|
|
this->MaxTimeBetweenShots = 0.00f;
|
|
this->MaxDeviationTimeBetweenShots = 0.00f;
|
|
this->MaxTrackingReactionTime = 0.00f;
|
|
this->MaxTrackingInterpTime = 0.00f;
|
|
this->MaxTrackingPredictionError = 0.00f;
|
|
this->MaxTrackingOffsetError = 0.00f;
|
|
this->TrackingErrorUpdateInterval = 0.00f;
|
|
this->SightPerceptionDistance = 0.00f;
|
|
this->EvasiveManeuverDelay = 0.00f;
|
|
this->EvasiveManeuverDelayRandomDeviation = 0.00f;
|
|
}
|
|
|