bool UActorComponent::IsNetSimulating() const
{
	return GetIsReplicated() && GetOwnerRole() != ROLE_Authority;
}
bool UActorComponent::IsSupportedForNetworking() const
{
	return IsNameStableForNetworking() || GetIsReplicated();
}