Ejemplo n.º 1
0
 public void ReplyPacket(RPCPacket response)
 {
     response.ID = this.ID;
     if (Sesion != null)
     {
         Sesion.Send(response);
     }
     if (Client != null)
     {
         Client.Send(response);
     }
 }