Files
UnrealEvent/Project/Source/FortniteGame/Private/FortAIEncounterWaveProgressEstimation.cpp
2026-04-22 15:51:07 +02: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;
}