DRG-Femboy-Voice/Source/FSD/Private/RecallableSentryGun.cpp
2025-04-15 12:39:31 -07:00

20 lines
424 B
C++
Executable file

#include "RecallableSentryGun.h"
#include "Net/UnrealNetwork.h"
void ARecallableSentryGun::OnRep_SentryIndex() {
}
void ARecallableSentryGun::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(ARecallableSentryGun, SentryIndex);
}
ARecallableSentryGun::ARecallableSentryGun() {
this->SentryIndex = 0;
}