mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
18 lines
508 B
C++
18 lines
508 B
C++
#include "FortClientPilot_FrontendBase.h"
|
|
|
|
UFortClientPilot_FrontendBase::UFortClientPilot_FrontendBase() {
|
|
bWaitingForSkillTreePurchase = false;
|
|
bWaitingForWorkerSlot = false;
|
|
NumSkillPurchasesAttempted = 0;
|
|
MaxSkillPurchaseAttempts = 0;
|
|
NumWorkerSlotsAttempted = 0;
|
|
MaxWorkerSlotAttempts = 0;
|
|
LoopsSpentWaitingForFrontend = 0;
|
|
LobbyActionTimer = 1;
|
|
TimeBetweenLobbyActions = 1;
|
|
bHasAttemptedAbandon = false;
|
|
LastMatchmakeTime = 1;
|
|
LastLoginCycleTime = 1;
|
|
}
|
|
|