Files
FNGameProj/Source/FortniteUI/Private/FortMissionTracker.cpp
2024-01-21 00:41:14 +01:00

23 lines
604 B
C++

#include "FortMissionTracker.h"
void UFortMissionTracker::RefreshSizeEstimate() {
}
void UFortMissionTracker::HandleSizeEstimateChanged(UObject* ChangedElement) {
}
void UFortMissionTracker::HandleDebugHUDObjectiveHeightChanged(bool bIsDebugging) {
}
UFortMissionTracker::UFortMissionTracker() {
this->MissionTrackerList = NULL;
this->MainQuestList = NULL;
this->PinnedQuestsList = NULL;
this->AdditionalEntriesIndicator = NULL;
this->DebugHeightEstimate = NULL;
this->AllowedSize = 0.00f;
this->bEnforceHeightLimit = true;
this->bSizeEstimateNeedsRefresh = false;
}