// If some click occurs while the choreography is playing, it is handled as a single-click event
// A choreography is sent to raise both ears and bunny is asked to ping immediately after (to be able to send
// packets generated by single-click event handling)
this.bunny.handleEvent(Bunny.SINGLE_CLICK_EVENT, null);
Packet p = new Packet();
p.addBlock(new PingIntervalBlock(1));
MessageBlock mb = new MessageBlock(12345);
mb.addPlayChoreographyFromLibraryCommand("raisedEars");
p.addBlock(mb);
this.bunny.forcePacket(p);
}