xxxxxxxxxx
class ENGINE_API AActor : public UObject
{
UPROPERTY( replicated )
AActor * Owner;
};
xxxxxxxxxx
void AActor::GetLifetimeReplicatedProps( TArray< FLifetimeProperty > & OutLifetimeProps ) const
{
DOREPLIFETIME( AActor, Owner );
}