mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
13 lines
391 B
C++
13 lines
391 B
C++
#include "FortAIEncounterWaveProgressEstimation.h"
|
|
|
|
FFortAIEncounterWaveProgressEstimation::FFortAIEncounterWaveProgressEstimation() {
|
|
SectionProgressEstimate = 1;
|
|
SectionStartTime = 1;
|
|
LastWaveProgressUpdateTime = 1;
|
|
PeakAndFadeWavePercentage = 1;
|
|
MaxAdjustmentPerSecond = 1;
|
|
CurrentSection = EFortAIWaveProgressSection::SectionOne;
|
|
NumberOfWaveSegments = 0;
|
|
}
|
|
|