The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). Additional documentation and release notes are available at [Multiplayer Documentation](https://docs-multiplayer.unity3d.com). ## [1.0.0] - 2022-06-27 ### Changed - Changed version to 1.0.0. (#2046)
18 lines
454 B
C#
18 lines
454 B
C#
namespace Unity.Netcode.Transports.UTP
|
|
{
|
|
/// <summary>
|
|
/// Caching structure to track network metrics related information.
|
|
/// </summary>
|
|
public struct NetworkMetricsContext
|
|
{
|
|
/// <summary>
|
|
/// The number of packet sent.
|
|
/// </summary>
|
|
public uint PacketSentCount;
|
|
/// <summary>
|
|
/// The number of packet received.
|
|
/// </summary>
|
|
public uint PacketReceivedCount;
|
|
}
|
|
}
|