Basisstruktur Würfel

master
Marco Angelo Palmieri 2024-05-05 20:01:04 +02:00
parent 6f7b8d7a29
commit 3a3eee7875
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ public class Würfel {
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. * 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(6) + 1;