Port of Hamurabi to Java (WIP)

This commit is contained in:
journich
2021-03-04 15:21:24 +10:30
parent 8c3b20b129
commit b2d4607713
3 changed files with 15 additions and 12 deletions

View File

@@ -0,0 +1,7 @@
public class HamurabiGame {
public static void main(String[] args) {
Hamurabi hamurabi = new Hamurabi();
hamurabi.play();
}
}