mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
21 lines
560 B
C++
21 lines
560 B
C++
#include "FortLeaveDialog.h"
|
|
|
|
void UFortLeaveDialog::SetupLeaveDialog(const FText& InTitle, const FText& InDescription, bool bInShowPartyOptions) {
|
|
}
|
|
|
|
void UFortLeaveDialog::CloseDialog() {
|
|
}
|
|
|
|
UFortLeaveDialog::UFortLeaveDialog() {
|
|
this->VBox_PartyOptions = NULL;
|
|
this->PartyRadioButtonGroup = NULL;
|
|
this->Text_Title = NULL;
|
|
this->Text_Description = NULL;
|
|
this->Button_LeavePartyRadio = NULL;
|
|
this->Button_StayWithPartyRadio = NULL;
|
|
this->Button_Leave = NULL;
|
|
this->Button_Cancel = NULL;
|
|
this->Button_MobileClose = NULL;
|
|
}
|
|
|