Add StickGame Assets
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user