mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +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;
|
|
}
|
|
|