View Javadoc

1   package cz.cuni.amis.pogamut.ut2004.hideandseek.protocol.messages;
2   
3   import cz.cuni.amis.pogamut.ut2004.communication.messages.custom.ControlMessageType;
4   
5   /**
6    * Announcing that the round has ended.
7    * <p><p>
8    * All RUNNERS that were neither FOULED nor CAPTURED are counted as "SURVIVED".
9    * <p><p>
10   * Sent after last {@link HSRoundState} update is broadcast to mark the round end allowing clients to resolve the round.
11   * 
12   * @author Jimmy
13   */
14  @ControlMessageType(type="HS_ROUND_END")
15  public class HSRoundEnd extends HSMessage {
16  	
17  	public HSRoundEnd() {
18  	}
19  
20  }