Browse Source

merging it to dev

Lewis Dominguez 6 years ago
parent
commit
7399356b57
1 changed files with 14 additions and 0 deletions
  1. 14
    0
      src/main/java/io/zipcoder/casino/Game.java

+ 14
- 0
src/main/java/io/zipcoder/casino/Game.java View File

1
+package io.zipcoder.casino;
2
+
3
+public interface Game {
4
+   // variable of Player type
5
+    Player player;
6
+
7
+    void startGame();
8
+
9
+    void endGame();
10
+
11
+    void declareWinner();
12
+
13
+
14
+}