DRG-Femboy-Voice/Source/FSD/Private/ObjectivesManager.cpp
2025-04-15 12:39:31 -07:00

37 lines
777 B
C++
Executable file

#include "ObjectivesManager.h"
void UObjectivesManager::OnObjectiveChanged(UObjective* obj) {
}
bool UObjectivesManager::HasRequiredSecondaryObjective() const {
return false;
}
UObjective* UObjectivesManager::GetSecondaryObjective() const {
return NULL;
}
UObjective* UObjectivesManager::GetPrimaryObjective() const {
return NULL;
}
void UObjectivesManager::ExitPodDescending() {
}
void UObjectivesManager::ExitPodArrived() {
}
void UObjectivesManager::DropPodExited() {
}
bool UObjectivesManager::AreRequiredSecondariesComplete() const {
return false;
}
UObjectivesManager::UObjectivesManager() {
this->Objective = NULL;
this->ObjectivesInitialized = false;
this->ObjectivesStarted = false;
this->bCheatObjectivesCompleted = false;
}