summaryrefslogtreecommitdiffstats
path: root/src/de/fhswf/in/inf/java1/aufgabe07/GleichSpieler.java
blob: be592cd57ffee759692b50f2a65e37adb7446249 (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
25
/**
 * 
 */
package de.fhswf.in.inf.java1.aufgabe07;

/**
 * This player always chooses the same shell.
 *
 * @author $Author: $
 * @version $Revision: $, $Date: $ UTC
 */
public class GleichSpieler extends Spieler
{
   /*
    * (non-Javadoc)
    * 
    * @see de.fhswf.in.inf.java1.aufgabe07.Spieler#zweiterTipp(int)
    */
   @Override
   public final int zweiterTipp(int leeresHuetchen)
   {
      return getErsterTipp();
   }

}