This commit is contained in:
Tim Tersch 2020-08-31 08:46:29 +02:00
parent 444859323c
commit f66878689e
1 changed files with 5 additions and 1 deletions

View File

@ -51,7 +51,11 @@ public class Arrays {
* @see Wuerfel#werfen()
*/
public void rollAll( Wuerfel[] pArray ) {
// TODO: implementieren
for (Wuerfel w : pArray) {
if (w != null) {
w.werfen();
}
}
}
/**