|
@@ -11,11 +11,6 @@ public class War extends CardGame implements Gamble, Game {
|
11
|
11
|
super(minBet, maxBet);
|
12
|
12
|
}
|
13
|
13
|
|
14
|
|
- public void Deal() {
|
15
|
|
-
|
16
|
|
- //for every card in super.geDeck();
|
17
|
|
-
|
18
|
|
- }
|
19
|
14
|
|
20
|
15
|
/**
|
21
|
16
|
* Specific to war methods
|
|
@@ -62,4 +57,13 @@ public class War extends CardGame implements Gamble, Game {
|
62
|
57
|
public void StartRound() {
|
63
|
58
|
|
64
|
59
|
}
|
|
60
|
+
|
|
61
|
+ public void Deal() {
|
|
62
|
+
|
|
63
|
+ /*
|
|
64
|
+ for every player playing this game (i)
|
|
65
|
+ for every card in the deck (j)
|
|
66
|
+
|
|
67
|
+ */
|
|
68
|
+ }
|
65
|
69
|
}
|