mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-18 19:10:32 +00:00
17 lines
403 B
C#
Executable File
17 lines
403 B
C#
Executable File
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;
|
|
}
|
|
}
|
|
}
|