mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
21 lines
441 B
C++
21 lines
441 B
C++
#include "FortQuestTrackerList.h"
|
|
|
|
void UFortQuestTrackerList::HandleSizeEstimateChanged(UObject* ChangedElement) {
|
|
}
|
|
|
|
void UFortQuestTrackerList::HandleQuestsUpdated() {
|
|
}
|
|
|
|
void UFortQuestTrackerList::HandlePinnedQuestsChanged() {
|
|
}
|
|
|
|
void UFortQuestTrackerList::HandleHUDFinalObjectiveHidden(UFortQuestItem* QuestItem) {
|
|
}
|
|
|
|
|
|
UFortQuestTrackerList::UFortQuestTrackerList() {
|
|
this->bConfigureAsHUD = false;
|
|
this->QuestList = NULL;
|
|
}
|
|
|