13 lines
308 B
C++
Executable file
13 lines
308 B
C++
Executable file
#include "PetComponent.h"
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
|
|
void UPetComponent::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
|
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
|
|
|
DOREPLIFETIME(UPetComponent, OwningPlayer);
|
|
}
|
|
|
|
UPetComponent::UPetComponent() {
|
|
}
|
|
|