mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
35 lines
868 B
C++
35 lines
868 B
C++
#include "FortAccountLinkingWindow.h"
|
|
|
|
void UFortAccountLinkingWindow::HandleSkipSignUpClicked() {
|
|
}
|
|
|
|
void UFortAccountLinkingWindow::HandleSkipNoThanksClicked() {
|
|
}
|
|
|
|
void UFortAccountLinkingWindow::HandleSkipLoginClicked() {
|
|
}
|
|
|
|
void UFortAccountLinkingWindow::HandleSignupClicked() {
|
|
}
|
|
|
|
void UFortAccountLinkingWindow::HandleNoThanksClicked() {
|
|
}
|
|
|
|
void UFortAccountLinkingWindow::HandleLoginClicked() {
|
|
}
|
|
|
|
UFortAccountLinkingWindow::UFortAccountLinkingWindow() {
|
|
this->Switcher_Main = NULL;
|
|
this->HaveEpicAccountBlur = NULL;
|
|
this->SkipSignInBlur = NULL;
|
|
this->Switcher_NoThanks = NULL;
|
|
this->Throbber_LoginDelay = NULL;
|
|
this->Button_Signup = NULL;
|
|
this->Button_Login = NULL;
|
|
this->Button_NoThanks = NULL;
|
|
this->Button_SkipSignInSignup = NULL;
|
|
this->Button_SkipSignInLogin = NULL;
|
|
this->Button_SkipSignInNoThanks = NULL;
|
|
}
|
|
|