summaryrefslogtreecommitdiffstats
path: root/src/de/fhswf/in/inf/java1/aufgabe7/WechselSpieler.java
blob: 2d45c4d91ab377976cc4d27d2e5a7df9fb71ada6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/**
 * 
 */
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);
   }
}