mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
17 lines
492 B
C++
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;
|
|
}
|
|
|