mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
15 lines
540 B
C++
15 lines
540 B
C++
#include "FortOnlineAccount.h"
|
|
|
|
UFortOnlineAccount::UFortOnlineAccount() {
|
|
this->bShouldCheckIfPlatformAllowed = true;
|
|
this->bShouldAthenaQueryRecentPlayers = false;
|
|
this->bHadLoginPurchaseCheckFailure = false;
|
|
this->IgnoreProducts.AddDefaulted(1);
|
|
this->bShouldClientForcePartnerId = false;
|
|
this->bDisablePurchasingOnRedemptionFailure = true;
|
|
this->MinimumSecondsBetweenPurchaseRedemptionAttempts = 60.00f;
|
|
this->bPromptUserAndReverifyAuthToken = false;
|
|
this->RefreshConnectionTimerDuration = 7.00f;
|
|
}
|
|
|