mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
20 lines
500 B
C++
20 lines
500 B
C++
#include "FortAircraft.h"
|
|
#include "FortCameraMode_ThirdPerson.h"
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
|
|
void AFortAircraft::OnRep_JumpFlashCount() {
|
|
}
|
|
|
|
void AFortAircraft::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
|
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
|
|
|
DOREPLIFETIME(AFortAircraft, JumpFlashCount);
|
|
}
|
|
|
|
AFortAircraft::AFortAircraft() {
|
|
this->JumpFlashCount = 0;
|
|
this->CameraModeClass = UFortCameraMode_ThirdPerson::StaticClass();
|
|
}
|
|
|