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

12 lines
347 B
C++

#include "SupplyDropZoneBasedSpawnData.h"
FSupplyDropZoneBasedSpawnData::FSupplyDropZoneBasedSpawnData() {
this->NumDropsRemainingInWave = 0;
this->NextWaveSpawnTime = 0.00f;
this->NextSpawnTime = 0.00f;
this->CurrGamePhase = EAthenaGamePhase::None;
this->CurrSubPhase = 0;
this->TotalSupplyDropsSpawnedInSubPhase = 0;
}