summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/control/RoundControl.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jrummikub/control/RoundControl.java')
-rw-r--r--src/jrummikub/control/RoundControl.java42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/jrummikub/control/RoundControl.java b/src/jrummikub/control/RoundControl.java
new file mode 100644
index 0000000..ae834b9
--- /dev/null
+++ b/src/jrummikub/control/RoundControl.java
@@ -0,0 +1,42 @@
+package jrummikub.control;
+
+import jrummikub.model.GameState;
+import jrummikub.view.IView;
+
+public class RoundControl {
+ private GameState gameState;
+ private IView view;
+
+ public RoundControl(GameState gameState, IView view) {
+ this.gameState = gameState;
+ this.view = view;
+ }
+
+ public void startRound() {
+
+ }
+
+ void deal() {
+
+ }
+
+ private void endOfTurn() {
+
+ }
+
+ private void ruleCheck() {
+
+ }
+
+ private void resetTable() {
+
+ }
+
+ private void preparePlayerTurn() {
+
+ }
+
+ private void dealStone() {
+
+ }
+}