Exemple #1
0
 /// <summary>
 /// When overridden in the derived class, notifies the <paramref name="character"/> that they have
 /// stopped shopping.
 /// </summary>
 /// <param name="character">The character that stopped shopping.</param>
 protected override void SendStopShopping(User character)
 {
     using (var pw = ServerPacket.StopShopping())
     {
         character.Send(pw, ServerMessageType.GUI);
     }
 }