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

18 lines
320 B
C++
Executable file

#include "PlanetZone.h"
bool UPlanetZone::IsUnlocked(UFSDSaveGame* SaveGame) const {
return false;
}
FGuid UPlanetZone::GetSavegameID() const {
return FGuid{};
}
TArray<UBiome*> UPlanetZone::GetBiomes() const {
return TArray<UBiome*>();
}
UPlanetZone::UPlanetZone() {
this->MustBeUnlocked = true;
}