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

23 lines
594 B
C++
Executable file

#include "ProspectorObjective.h"
#include "Net/UnrealNetwork.h"
void UProspectorObjective::OnRep_ActiveProspector() {
}
void UProspectorObjective::OnProspectorDeath(UHealthComponentBase* Health) {
}
bool UProspectorObjective::IsProspectorDead() const {
return false;
}
void UProspectorObjective::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(UProspectorObjective, ActiveProspector);
}
UProspectorObjective::UProspectorObjective() {
this->DebrisPositioning = NULL;
}