mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
15 lines
441 B
C++
15 lines
441 B
C++
#include "FortPartyRepData.h"
|
|
|
|
FFortPartyRepData::FFortPartyRepData() {
|
|
PartyState = EFortPartyState::Undetermined;
|
|
LobbyConnectionStarted = false;
|
|
MatchmakingResult = EMatchmakingCompleteResult::NotStarted;
|
|
MatchmakingState = EMatchmakingState::NotMatchmaking;
|
|
SessionIsCriticalMission = false;
|
|
ZoneTileIndex = 0;
|
|
AllowJoinInProgress = false;
|
|
AthenaSquadFill = false;
|
|
PartyIsJoinedInProgress = false;
|
|
}
|
|
|