|
@@ -2,14 +2,21 @@ package io.zipcoder.casino;
|
2
|
2
|
|
3
|
3
|
public class Console {
|
4
|
4
|
private Game[] games;
|
|
5
|
+ private Player player;
|
5
|
6
|
|
6
|
7
|
Console(){}
|
7
|
8
|
|
8
|
|
- public void createAccount(){
|
9
|
|
-
|
|
9
|
+ public void createAccount()
|
|
10
|
+ {
|
|
11
|
+ /*
|
|
12
|
+ ask the player for their name.
|
|
13
|
+ ask the player for their starting balance
|
|
14
|
+ create the player.
|
|
15
|
+ */
|
10
|
16
|
}
|
11
|
17
|
|
12
|
|
- public void chooseGame(String gameName){
|
|
18
|
+ public void chooseGame(String gameName)
|
|
19
|
+ {
|
13
|
20
|
/*
|
14
|
21
|
ask the user for min max bet at the table
|
15
|
22
|
ask the user which game they would like to play
|