mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
13 lines
453 B
C++
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;
|
|
}
|
|
|