예제 #1
0
 /// <summary>
 /// Handles the corresponding event.
 /// </summary>
 /// <param name="sender">The source of the event.</param>
 /// <param name="e">The <see cref="EventArgs{Byte}"/> instance containing the event data.</param>
 void DeleteCharacterMsgBox_DeleteRequested(Control sender, EventArgs <byte> e)
 {
     using (var pw = ClientPacket.DeleteAccountCharacter(e.Item1))
     {
         _sockets.Send(pw, ClientMessageType.System);
     }
 }