mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
15 lines
508 B
C++
15 lines
508 B
C++
#include "FortPartyMemberRepData.h"
|
|
|
|
FFortPartyMemberRepData::FFortPartyMemberRepData() {
|
|
this->Location = EFortPartyMemberLocation::PreLobby;
|
|
this->MatchmakingLevel = 0;
|
|
this->HomeBaseVersion = 0;
|
|
this->HasPreloadedAthena = false;
|
|
this->NumAthenaPlayersLeft = 0;
|
|
this->GameReadiness = EGameReadiness::NotReady;
|
|
this->HiddenMatchmakingDelayMax = 0;
|
|
this->ReadyInputType = ECommonInputType::MouseAndKeyboard;
|
|
this->CurrentInputType = ECommonInputType::MouseAndKeyboard;
|
|
}
|
|
|