Java version of Chief

This commit is contained in:
Tim
2021-02-19 10:00:54 +10:30
parent 7ebe0bb3eb
commit 4746c3c0c6
2 changed files with 204 additions and 0 deletions

View File

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