mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
35 lines
1021 B
C++
35 lines
1021 B
C++
#include "AthenaChallengeScreen.h"
|
|
|
|
bool UAthenaChallengeScreen::IsPartyAssistedChallengeSet() const {
|
|
return false;
|
|
}
|
|
|
|
void UAthenaChallengeScreen::HandleTabSelectionChanged(UCommonButton* TabButton, int32 TabIdx) {
|
|
}
|
|
|
|
void UAthenaChallengeScreen::HandleTabClicked(UCommonButton* TabButton, int32 TabIdx) {
|
|
}
|
|
|
|
void UAthenaChallengeScreen::HandlePrevCategoryAction(bool& bPassThrough) {
|
|
}
|
|
|
|
void UAthenaChallengeScreen::HandleNextCategoryAction(bool& bPassThrough) {
|
|
}
|
|
|
|
void UAthenaChallengeScreen::HandleDetailsDeactivated(UCommonActivatablePanel* DetailsPanel) {
|
|
}
|
|
|
|
UAthenaChallengeScreen::UAthenaChallengeScreen() {
|
|
this->DefaultDetailsWidgetClass = NULL;
|
|
this->ActiveDetailsWidget = NULL;
|
|
this->LastSelectedTile = NULL;
|
|
this->TabButtonGroup = NULL;
|
|
this->EntryBox_SectionTabs = NULL;
|
|
this->ScrollBox_Sections = NULL;
|
|
this->EntryBox_EventChallenges = NULL;
|
|
this->ChallengeTile_Dailies = NULL;
|
|
this->EntryBox_WeeklyChallenges = NULL;
|
|
this->EntryBox_StyleChallenges = NULL;
|
|
}
|
|
|