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