mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
23 lines
540 B
C++
23 lines
540 B
C++
#include "EnableMultiFactorModal.h"
|
|
|
|
bool UEnableMultiFactorModal::QueueModal(bool bAllowPermanentOptOut, bool bTournamentQueue) {
|
|
return false;
|
|
}
|
|
|
|
|
|
|
|
|
|
void UEnableMultiFactorModal::AnimationsComplete() {
|
|
}
|
|
|
|
UEnableMultiFactorModal::UEnableMultiFactorModal() {
|
|
this->bHasEnableMFABeenClicked = false;
|
|
this->bShouldShowConsoleVersion = false;
|
|
this->Button_EnableMFA = NULL;
|
|
this->Button_RemindLater = NULL;
|
|
this->Button_OptOut = NULL;
|
|
this->Button_ConsoleMFAEnabled = NULL;
|
|
this->CT_MFA_Description = NULL;
|
|
}
|
|
|