mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
19 lines
708 B
C++
19 lines
708 B
C++
#include "FortMcpQuestObjectiveInfo.h"
|
|
|
|
FFortMcpQuestObjectiveInfo::FFortMcpQuestObjectiveInfo() {
|
|
this->ItemEvent = EFortQuestObjectiveItemEvent::Craft;
|
|
this->bHidden = false;
|
|
this->bRequirePrimaryMissionCompletion = false;
|
|
this->bCanProgressInZone = false;
|
|
this->bDisplayDynamicAnnouncementUpdate = false;
|
|
this->DynamicStatusUpdateType = EObjectiveStatusUpdateType::Always;
|
|
this->LinkVaultTab = EFortInventoryFilter::WeaponMelee;
|
|
this->LinkToItemManagement = EFortFrontendInventoryFilter::Schematics;
|
|
this->LinkSquadIndex = 0;
|
|
this->Count = 0;
|
|
this->Stage = 0;
|
|
this->DynamicStatusUpdatePercentInterval = 0;
|
|
this->DynamicUpdateCompletionDelay = 0.00f;
|
|
}
|
|
|