Java version of Slots

This commit is contained in:
journich
2021-02-28 08:14:17 +10:30
parent 17289e59d8
commit e8ceef0dba
3 changed files with 308 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
public class SlotsGame {
public static void main(String[] args) {
Slots slots = new Slots();
slots.play();
}
}