mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-09-02 12:33:25 +00:00
23 lines
604 B
C++
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;
|
|
}
|
|
|