This commit is contained in:
Tim Tersch
2020-08-31 08:46:29 +02:00
parent 444859323c
commit f66878689e

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();
}
}
}
/**