blob: 0628d8c50ddca7e172e5bb7283a04bd7e4aad36a (
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
26
27
|
/**
*
*/
package de.fhswf.in.inf.java1.aufgabe7;
import java.util.Random;
/**
* TODO Add comment here
*
* @author $Author: $
* @version $Revision: $, $Date: $ UTC
*/
public class Spiel
{
private int nussPlatz = -1;
private Random rnd = new Random();
/**
* TODO Add constructor comment here
*
*/
public Spiel()
{
// TODO Auto-generated constructor stub
}
}
|