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

15 lines
381 B
C++
Executable file

#include "Shredder.h"
#include "Net/UnrealNetwork.h"
void AShredder::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(AShredder, CurrentTarget);
}
AShredder::AShredder() {
this->FoldoutRange = 0.00f;
this->SpinRange = 0.00f;
this->CurrentTarget = NULL;
}