mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
26 lines
609 B
C++
26 lines
609 B
C++
#include "FortGameplayMutator.h"
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
void AFortGameplayMutator::SetMutatorActive(bool bEnable) {
|
|
}
|
|
|
|
void AFortGameplayMutator::OnRep_bMutatorActive() {
|
|
}
|
|
|
|
bool AFortGameplayMutator::IsMutatorActive() const {
|
|
return false;
|
|
}
|
|
|
|
|
|
void AFortGameplayMutator::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
|
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
|
|
|
DOREPLIFETIME(AFortGameplayMutator, bMutatorActive);
|
|
}
|
|
|
|
AFortGameplayMutator::AFortGameplayMutator() {
|
|
bMutatorActive = false;
|
|
bNetworkDormantWhenDeactivated = false;
|
|
}
|
|
|