mirror of
https://github.com/Dadechin/Unity-WebSocket.git
synced 2025-07-03 20:04:33 +00:00
15 lines
573 B
C#
15 lines
573 B
C#
namespace FishNet.Utility
|
|
{
|
|
internal static class UtilityConstants
|
|
{
|
|
public const string CODEGEN_ASSEMBLY_NAME = "Unity.FishNet.CodeGen";
|
|
public const string GENERATED_ASSEMBLY_NAME = "FishNet.Generated";
|
|
public const string DEMOS_ASSEMBLY_NAME = "FishNet.Demos";
|
|
public const string TEST_ASSEMBLY_NAME = "FishNet.Test";
|
|
public const string RUNTIME_ASSEMBLY_NAME = "FishNet.Runtime";
|
|
|
|
public const string GeneratedWriterPrefix = "GWrite___";
|
|
public const string GeneratedReaderPrefix = "GRead___";
|
|
}
|
|
|
|
} |