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

22 lines
444 B
C++
Executable file

#include "DeepDive.h"
bool UDeepDive::IsCompleted() const {
return false;
}
bool UDeepDive::HasCompletedStage(int32 stageIndex) const {
return false;
}
FDeepDiveRewardItem UDeepDive::GetGivenRewardAtStage(int32 stageIndex) {
return FDeepDiveRewardItem{};
}
UDeepDive::UDeepDive() {
this->Biome = NULL;
this->MissionsCompleted = 0;
this->CurrentMissionIndex = 0;
this->Template = NULL;
this->BestTime = 0;
}