17 lines
468 B
C++
Executable file
17 lines
468 B
C++
Executable file
#include "RadialFireModule.h"
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
|
|
void ARadialFireModule::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
|
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
|
|
|
DOREPLIFETIME(ARadialFireModule, IsAttacking);
|
|
}
|
|
|
|
ARadialFireModule::ARadialFireModule() {
|
|
this->ProjectileClass = NULL;
|
|
this->RotationSpeedTurret = 0.00f;
|
|
this->DelayBetweenShots = 0.00f;
|
|
this->IsAttacking = false;
|
|
}
|
|
|