mirror of
https://github.com/coding-horror/basic-computer-games.git
synced 2026-01-02 08:10:45 -08:00
9 lines
167 B
Java
9 lines
167 B
Java
public class BombardmentGame {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
Bombardment bombardment = new Bombardment();
|
|
bombardment.play();
|
|
}
|
|
}
|