blob: f5bf0216fca060d25e64e22c28ffe28302bc7ee9 (
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.aufgabe7;
/**
* 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.aufgabe7.Spieler#zweiterTipp(int)
*/
@Override
public final int zweiterTipp(int leeresHuetchen)
{
return getErsterTipp();
}
}
|