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

36 lines
819 B
C++
Executable file

#include "FacilityPowerStation.h"
#include "Net/UnrealNetwork.h"
void AFacilityPowerStation::StopHacking() {
}
void AFacilityPowerStation::StartHacking() {
}
void AFacilityPowerStation::OnRep_Progress() {
}
void AFacilityPowerStation::OnRep_IsHacking() {
}
bool AFacilityPowerStation::IsHacked() const {
return false;
}
void AFacilityPowerStation::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(AFacilityPowerStation, Progress);
DOREPLIFETIME(AFacilityPowerStation, IsHacking);
}
AFacilityPowerStation::AFacilityPowerStation() {
this->ProgressPoint = 0.33f;
this->ProgresPointCount = 2;
this->TimeToDefend = 120.00f;
this->Progress = 0.00f;
this->IsHacking = false;
}