/** * */ package de.fhswf.in.inf.java1.aufgabe7; /** * This player always changes the shell. * * @author $Author: $ * @version $Revision: $, $Date: $ UTC */ public class WechselSpieler extends Spieler { /** * Constructs a player that will always switch shell. * */ public WechselSpieler() { super(true, 0); } }