Mirror/Assets/Mirage.Profiler/Editor/Messages/CounterNames.cs

17 lines
403 B
C#
Raw Normal View History

2024-01-16 08:58:48 +00:00
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;
}
}
}