summaryrefslogtreecommitdiffstats
path: root/src/de/fhswf/in/inf/java1/aufgabe7/GleichSpieler.java
blob: 5e52f350746bdfebeb9417a69a19cd8593977f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/**
 * 
 */
package de.fhswf.in.inf.java1.aufgabe7;

/**
 * This player always chooses the same shell.
 *
 * @author $Author: $
 * @version $Revision: $, $Date: $ UTC
 */
public class GleichSpieler extends Spieler
{

   /**
    * Constructs a player that doesn't switch shell.
    *
    */
   public GleichSpieler()
   {
      super(false, 0);
   }

}