public void roundEnd(RoundEvent e) {
}
public void initializeRule(Game game) throws InitializationException {
Round subround = game.getRounds().get(0);
if (subround != null)
subround = subround.getSubRounds().getSortedList().get(0);
if (subround != null) {
subround.addRoundStopCondition(this);
subround.addRoundListener(this);
}
else
throw new InitializationException("Can't find the expected subRound");
}