示例#1
0
 /// <summary>
 /// Handles the corresponding event.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="EventArgs"/> instance containing the event data.</param>
 void ChatDialogForm_RequestEndDialog(NPCChatDialogForm sender, EventArgs e)
 {
     using (var pw = ClientPacket.EndNPCChatDialog())
     {
         Socket.Send(pw, ClientMessageType.GUI);
     }
 }