Files
FNGameProj/Source/FortniteGame/Private/FortAIEncounterWaveProgressEstimation.cpp
2024-01-21 00:41:14 +01:00

13 lines
453 B
C++

#include "FortAIEncounterWaveProgressEstimation.h"
FFortAIEncounterWaveProgressEstimation::FFortAIEncounterWaveProgressEstimation() {
this->SectionProgressEstimate = 0.00f;
this->SectionStartTime = 0.00f;
this->LastWaveProgressUpdateTime = 0.00f;
this->PeakAndFadeWavePercentage = 0.00f;
this->MaxAdjustmentPerSecond = 0.00f;
this->CurrentSection = EFortAIWaveProgressSection::SectionOne;
this->NumberOfWaveSegments = 0;
}