mirror of
https://github.com/MikuLeaks/KianaBH3.git
synced 2025-12-13 05:14:46 +01:00
13 lines
384 B
C#
13 lines
384 B
C#
namespace KianaBH.KcpSharp.Base;
|
|
|
|
internal static class KcpGlobalVars
|
|
{
|
|
#if !CONVID32
|
|
public const ushort CONVID_LENGTH = 8;
|
|
public const ushort HEADER_LENGTH_WITH_CONVID = 28;
|
|
public const ushort HEADER_LENGTH_WITHOUT_CONVID = 20;
|
|
#else
|
|
public const ushort HEADER_LENGTH_WITH_CONVID = 24;
|
|
public const ushort HEADER_LENGTH_WITHOUT_CONVID = 20;
|
|
#endif
|
|
} |