mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +01:00
16 lines
282 B
C#
16 lines
282 B
C#
namespace MoleMole
|
|
{
|
|
internal class PacketDefine
|
|
{
|
|
public const uint head_magic = 19088743u;
|
|
|
|
public const uint tail_magic = 2309737967u;
|
|
|
|
public const ushort head_version_v1 = 1;
|
|
|
|
public const int packet_head_len_v1 = 40;
|
|
|
|
public const int packet_tail_len_v1 = 4;
|
|
}
|
|
}
|