Java version of Bombardment

This commit is contained in:
Tim
2021-02-20 13:29:14 +10:30
parent 28a4d56265
commit 722359228f
2 changed files with 380 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
public class BombardmentGame {
public static void main(String[] args) {
Bombardment bombardment = new Bombardment();
bombardment.play();
}
}