Inheritance: SagaLib.Packet
コード例 #1
0
ファイル: MapClient.Login.cs プロジェクト: Willyham/SagaRO2
        public void OnSendGUID(SagaMap.Packets.Client.SendGUID p)
        {
            if (this.state != SESSION_STATE.NOT_IDENTIFIED) return;

            Packets.Server.Identify sendPacket = new Packets.Server.Identify();
            this.netIO.SendPacket(sendPacket, this.SessionID);
        }
コード例 #2
0
        public void OnSendGUID(SagaMap.Packets.Client.SendGUID p)
        {
            if (this.state != SESSION_STATE.NOT_IDENTIFIED)
            {
                return;
            }

            Packets.Server.Identify sendPacket = new Packets.Server.Identify();
            this.netIO.SendPacket(sendPacket, this.SessionID);
        }