Java version of Trap

This commit is contained in:
Tim
2021-02-21 09:50:57 +10:30
parent 722359228f
commit 27ba49f586
2 changed files with 210 additions and 0 deletions

View File

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