Basisstruktur Würfel, max augen erweitert

master
Marco Angelo Palmieri 2024-05-05 20:04:47 +02:00
parent 3a3eee7875
commit 31d4bf96b6
1 changed files with 2 additions and 1 deletions

View File

@ -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;
} }
} }