Files
FNGameProj/Source/FortniteGame/Private/AthenaBuildingFoundationObjective.cpp
T
2024-03-03 23:44:39 +01:00

17 lines
534 B
C++

#include "AthenaBuildingFoundationObjective.h"
#include "Net/UnrealNetwork.h"
void AAthenaBuildingFoundationObjective::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(AAthenaBuildingFoundationObjective, CurrentHealth);
DOREPLIFETIME(AAthenaBuildingFoundationObjective, MaxHealth);
}
AAthenaBuildingFoundationObjective::AAthenaBuildingFoundationObjective() {
this->CurrentHealth = 1;
this->MaxHealth = 1;
}