Basisstruktur Würfel, max augen erweitert
parent
3a3eee7875
commit
31d4bf96b6
|
@ -7,12 +7,13 @@ import java.util.Random;
|
||||||
*/
|
*/
|
||||||
public class Würfel {
|
public class Würfel {
|
||||||
private int augenzahl;
|
private int augenzahl;
|
||||||
|
private final int MAX_AUGENZAHL = 8;
|
||||||
private static final Random random = new Random();
|
private static final Random random = new Random();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Würfelt den Würfel und erzeugt eine neue Augenzahl zwischen 1 und 6. für Starwars bis 8
|
* Würfelt den Würfel und erzeugt eine neue Augenzahl zwischen 1 und 6. für Starwars bis 8
|
||||||
*/
|
*/
|
||||||
public void würfeln() {
|
public void würfeln() {
|
||||||
augenzahl = random.nextInt(6) + 1;
|
augenzahl = random.nextInt(MAX_AUGENZAHL) + 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue