mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
16 lines
427 B
C++
16 lines
427 B
C++
#include "AthenaChallengeInfoPanel.h"
|
|
|
|
void UAthenaChallengeInfoPanel::HandleQuestsUpdatedInGame() {
|
|
}
|
|
|
|
void UAthenaChallengeInfoPanel::HandleCycleQuestsInputAction(bool& bPassThrough) {
|
|
}
|
|
|
|
UAthenaChallengeInfoPanel::UAthenaChallengeInfoPanel() {
|
|
this->CurrentPage = EChallengeInfoPage::PartyAssist;
|
|
this->MaxSuggestedEntries = 5;
|
|
this->Text_DisplayedChallengeTypes = NULL;
|
|
this->EntryBox_Challenges = NULL;
|
|
}
|
|
|