mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 11:53:38 +00:00
18 lines
426 B
C++
18 lines
426 B
C++
#include "FortGameStatePvE.h"
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
AFortAircraft* AFortGameStatePvE::GetAircraft() const {
|
|
return NULL;
|
|
}
|
|
|
|
void AFortGameStatePvE::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
|
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
|
|
|
DOREPLIFETIME(AFortGameStatePvE, Aircraft);
|
|
}
|
|
|
|
AFortGameStatePvE::AFortGameStatePvE() {
|
|
this->Aircraft = NULL;
|
|
}
|
|
|