mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
24 lines
825 B
C++
24 lines
825 B
C++
#include "FortAthenaMutator_LoadoutSwap.h"
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
void AFortAthenaMutator_LoadoutSwap::OnRep_ServerWorldTimeOfNextSwap() {
|
|
}
|
|
|
|
void AFortAthenaMutator_LoadoutSwap::OnGamePhaseChanged(EAthenaGamePhase NewPhase) {
|
|
}
|
|
|
|
void AFortAthenaMutator_LoadoutSwap::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
|
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
|
|
|
DOREPLIFETIME(AFortAthenaMutator_LoadoutSwap, ServerWorldTimeOfNextSwap);
|
|
DOREPLIFETIME(AFortAthenaMutator_LoadoutSwap, NextItemsToGrant);
|
|
DOREPLIFETIME(AFortAthenaMutator_LoadoutSwap, ItemsWithInfiniteAmmo);
|
|
}
|
|
|
|
AFortAthenaMutator_LoadoutSwap::AFortAthenaMutator_LoadoutSwap() {
|
|
GamePhaseToStart = EAthenaGamePhase::None;
|
|
bRandomizeLoadOuts = true;
|
|
ServerWorldTimeOfNextSwap = 1;
|
|
}
|
|
|