mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
18 lines
596 B
C++
18 lines
596 B
C++
#include "FortClientPilot_FrontendBase.h"
|
|
|
|
UFortClientPilot_FrontendBase::UFortClientPilot_FrontendBase() {
|
|
this->bWaitingForSkillTreePurchase = false;
|
|
this->bWaitingForWorkerSlot = false;
|
|
this->NumSkillPurchasesAttempted = 0;
|
|
this->MaxSkillPurchaseAttempts = 0;
|
|
this->NumWorkerSlotsAttempted = 0;
|
|
this->MaxWorkerSlotAttempts = 0;
|
|
this->LoopsSpentWaitingForFrontend = 0;
|
|
this->LobbyActionTimer = 0.00f;
|
|
this->TimeBetweenLobbyActions = 0.00f;
|
|
this->bHasAttemptedAbandon = false;
|
|
this->LastMatchmakeTime = 0.00f;
|
|
this->LastLoginCycleTime = 0.00f;
|
|
}
|
|
|