mirror of
https://github.com/MirrorNetworking/Mirror.git
synced 2024-11-19 03:20:33 +00:00
13 lines
361 B
C#
13 lines
361 B
C#
|
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";
|
||
|
}
|
||
|
}
|