Java version of Bombs Away

This commit is contained in:
journich
2021-02-23 16:05:46 +10:30
parent 3f2b810ceb
commit 1a449b1f3c
2 changed files with 513 additions and 0 deletions

View File

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