@@ -0,0 +1,14 @@
+package io.zipcoder.casino;
+
+public interface Game {
+ // variable of Player type
+ Player player;
+ void startGame();
+ void endGame();
+ void declareWinner();
+}