mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2025-12-30 06:31:46 -08:00
9 lines
157 B
Java
9 lines
157 B
Java
public class BombsAwayGame {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
BombsAway bombsAway = new BombsAway();
|
|
bombsAway.play();
|
|
}
|
|
}
|