Mirror/Assets/Mirage.Profiler/Editor/ModuleNames.cs
2024-01-16 08:58:48 +00:00

13 lines
361 B
C#
Executable File

namespace Mirage.NetworkProfiler.ModuleGUI
{
internal static class ModuleNames
{
// change this based on netcode lib
private const string PREFIX = "Mirror";
public const string SERVER = PREFIX + " Server";
public const string SENT = PREFIX + " Sent";
public const string RECEIVED = PREFIX + " Received";
}
}