Basisstruktur Würfel
commit
00c56087a6
|
@ -0,0 +1,18 @@
|
||||||
|
import java.util.Random;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Diese Klasse repräsentiert einen einzelnen Würfel.
|
||||||
|
*/
|
||||||
|
public class Würfel {
|
||||||
|
private int augenzahl;
|
||||||
|
private final int MAX_AUGEN = 6;
|
||||||
|
private static final Random random = new Random();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Würfelt den Würfel und erzeugt eine neue Augenzahl zwischen 1 und MAX_AUGEN.
|
||||||
|
*/
|
||||||
|
public void würfeln() {
|
||||||
|
augenzahl = random.nextInt(MAX_AUGEN) + 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue