mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-19 11:30:32 +00:00
17 lines
403 B
C#
17 lines
403 B
C#
|
namespace Mirage.NetworkProfiler.ModuleGUI.Messages
|
||
|
{
|
||
|
internal struct CounterNames
|
||
|
{
|
||
|
public readonly string Count;
|
||
|
public readonly string Bytes;
|
||
|
public readonly string PerSecond;
|
||
|
|
||
|
public CounterNames(string count, string bytes, string perSecond)
|
||
|
{
|
||
|
Count = count;
|
||
|
Bytes = bytes;
|
||
|
PerSecond = perSecond;
|
||
|
}
|
||
|
}
|
||
|
}
|