Files
2026-04-22 15:51:07 +02: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;
}