Files
FNGameProj/Source/FortniteGame/Private/FortGameModePickup_Wax.cpp
2024-01-21 00:41:14 +01:00

17 lines
492 B
C++

#include "FortGameModePickup_Wax.h"
#include "Net/UnrealNetwork.h"
void AFortGameModePickup_Wax::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(AFortGameModePickup_Wax, bIsFirstGeneration);
DOREPLIFETIME(AFortGameModePickup_Wax, AmountOfTokens);
}
AFortGameModePickup_Wax::AFortGameModePickup_Wax() {
this->bIsFirstGeneration = false;
this->AmountOfTokens = 0;
}