mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
21 lines
570 B
C++
21 lines
570 B
C++
#include "FortSquadSelectionMenu.h"
|
|
|
|
|
|
void UFortSquadSelectionMenu::HandleMemberEntryClicked(UCommonButton* MemberEntryButton, int32 EntryIdx) {
|
|
}
|
|
|
|
void UFortSquadSelectionMenu::HandleExitAction(bool& bPassThrough) {
|
|
}
|
|
|
|
UFortSquadSelectionMenu::UFortSquadSelectionMenu() {
|
|
this->ButtonGroup = NULL;
|
|
this->TeamEntryBox_Squads = NULL;
|
|
this->Button_ConfirmMove = NULL;
|
|
this->Button_CancelMove = NULL;
|
|
this->RichText_ActionPrompt = NULL;
|
|
this->Button_ChangeParticipation = NULL;
|
|
this->Switcher_Buttons = NULL;
|
|
this->Mobile_Overlay = NULL;
|
|
}
|
|
|