Java version of the Bug Basic game

This commit is contained in:
journich
2021-02-24 11:48:12 +10:30
parent 1a449b1f3c
commit a7182ed402
5 changed files with 660 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
public class BugGame {
public static void main(String[] args) {
Bug bug = new Bug();
bug.play();
}
}