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

17 lines
487 B
C++
Executable file

#include "AimingTowerModule.h"
#include "Net/UnrealNetwork.h"
void AAimingTowerModule::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME(AAimingTowerModule, Target);
DOREPLIFETIME(AAimingTowerModule, AimRotation);
}
AAimingTowerModule::AAimingTowerModule() {
this->Target = NULL;
this->BurstTime = 0.00f;
this->AttackTime = 0.00f;
this->BurstSize = 0;
}