This repository has been archived on 2025-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
Files
skolavdf/phr/StickGame/Assets/FishNet/Runtime/Managing/Statistic/NetworkTrafficArgs.cs
2024-03-24 22:21:16 +01:00

21 lines
577 B
C#

namespace FishNet.Managing.Statistic
{
public struct NetworkTrafficArgs
{
/// <summary>
/// Number of bytes sent to the server.
/// </summary>
public readonly ulong ToServerBytes;
/// <summary>
/// Number of bytes sent by the server.
/// </summary>
public readonly ulong FromServerBytes;
public NetworkTrafficArgs(ulong toServerBytes, ulong fromServerBytes)
{
ToServerBytes = toServerBytes;
FromServerBytes = fromServerBytes;
}
}
}