namespace Unity.Netcode.Transports.UTP { /// /// Caching structure to track network metrics related information. /// public struct NetworkMetricsContext { /// /// The number of packet sent. /// public uint PacketSentCount; /// /// The number of packet received. /// public uint PacketReceivedCount; } }