mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
14 lines
425 B
C++
14 lines
425 B
C++
#include "AthenaServerStartAircraftStats.h"
|
|
|
|
FAthenaServerStartAircraftStats::FAthenaServerStartAircraftStats() {
|
|
this->WarmupDurationSec = 0.00f;
|
|
this->NumPlayersMissing = 0;
|
|
this->NumPlayersQuitting = 0;
|
|
this->bStartedEarly = false;
|
|
this->StartReason = EAircraftLaunchReason::StdTimerAllPlayers;
|
|
this->ExpectedPlayers = 0;
|
|
this->PlayersReadied = 0;
|
|
this->PlayersLoadingScreenDropped = 0;
|
|
}
|
|
|