mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
23 lines
520 B
C++
23 lines
520 B
C++
#include "FortMissionTrackerEntry.h"
|
|
|
|
void UFortMissionTrackerEntry::UpdateVisibility() {
|
|
}
|
|
|
|
|
|
void UFortMissionTrackerEntry::HandleObjectivesChanged() {
|
|
}
|
|
|
|
void UFortMissionTrackerEntry::HandleMissionInfoSet() {
|
|
}
|
|
|
|
UFortMissionTrackerEntry::UFortMissionTrackerEntry() {
|
|
this->SubEntryClass = NULL;
|
|
this->bConfigureAsHUD = true;
|
|
this->bHiddenByHeightConstraint = false;
|
|
this->MissionNameText = NULL;
|
|
this->ObjectivesListBox = NULL;
|
|
this->UpperSeparator = NULL;
|
|
this->TrackedMission = NULL;
|
|
}
|
|
|