mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
20 lines
611 B
C++
20 lines
611 B
C++
#include "FortAthenaMutator_InfiniteResources.h"
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
void AFortAthenaMutator_InfiniteResources::UpdateResourceIcons() {
|
|
}
|
|
|
|
void AFortAthenaMutator_InfiniteResources::OnRep_bInfiniteResources() {
|
|
}
|
|
|
|
void AFortAthenaMutator_InfiniteResources::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
|
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
|
|
|
DOREPLIFETIME(AFortAthenaMutator_InfiniteResources, bInfiniteResources);
|
|
}
|
|
|
|
AFortAthenaMutator_InfiniteResources::AFortAthenaMutator_InfiniteResources() {
|
|
this->bInfiniteResources = false;
|
|
}
|
|
|