hch
2025-09-01 a4b35ff86cabe501e5c1743c430cda080d27f4f8
Main/Core/NetworkPackage/GameNetPackBasic.cs
@@ -8,7 +8,22 @@
public class GameNetPackBasic
{
    public ServerType socketType = ServerType.Main;
    static ulong AutoIncreaseUID = 0;
    public ulong packUID
    {
        get;
        private set;
    }
    public GameNetPackBasic()
    {
        packUID = AutoIncreaseUID++;
    }
    public ServerType socketType = ServerType.Main; //默认且唯一
    /** 协议号 */
    protected ushort _cmd = 0;