Files
UnrealEvent/Project/Source/FortniteGame/Private/FortSessionHelper.cpp
T
2026-04-22 15:51:07 +02:00

12 lines
428 B
C++

#include "FortSessionHelper.h"
#include "FortPartyBeaconClient.h"
UFortSessionHelper::UFortSessionHelper() {
this->BeaconClientClass = AFortPartyBeaconClient::StaticClass();
this->PartyBeaconClient = NULL;
this->LastBeaconResponse = EPartyReservationResult::GeneralError;
this->CurrentJoinState = EFortSessionHelperJoinState::NotJoining;
this->CurrentJoinResult = EFortSessionHelperJoinResult::NoResult;
}