From 6e9c1b539b412dc08716eb3f88adb53b3021a27b Mon Sep 17 00:00:00 2001 From: Ida Massow Date: Wed, 4 May 2011 19:09:39 +0200 Subject: =?UTF-8?q?Test=20f=C3=BCr=20Austeilen=20geschrieben,=20eine=20Men?= =?UTF-8?q?ge=20getSize=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@116 72836036-5685-4462-b002-a69064685172 --- src/jrummikub/control/RoundControl.java | 42 +++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 src/jrummikub/control/RoundControl.java (limited to 'src/jrummikub/control/RoundControl.java') 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() { + + } +} -- cgit v1.2.3