diff options
author | Ida Massow <massow@informatik.uni-luebeck.de> | 2011-05-04 19:09:39 +0200 |
---|---|---|
committer | Ida Massow <massow@informatik.uni-luebeck.de> | 2011-05-04 19:09:39 +0200 |
commit | 6e9c1b539b412dc08716eb3f88adb53b3021a27b (patch) | |
tree | e7162d24700fb26b7103dc0f69705f70423cd288 /src/jrummikub/control | |
parent | 8e32bc9e696216129266406c085d59731aae043c (diff) | |
download | JRummikub-6e9c1b539b412dc08716eb3f88adb53b3021a27b.tar JRummikub-6e9c1b539b412dc08716eb3f88adb53b3021a27b.zip |
Test für Austeilen geschrieben, eine Menge getSize hinzugefügt
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@116 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'src/jrummikub/control')
-rw-r--r-- | src/jrummikub/control/RoundControl.java (renamed from src/jrummikub/control/GameControl.java) | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/jrummikub/control/GameControl.java b/src/jrummikub/control/RoundControl.java index 3b9d4bb..ae834b9 100644 --- a/src/jrummikub/control/GameControl.java +++ b/src/jrummikub/control/RoundControl.java @@ -3,15 +3,23 @@ package jrummikub.control; import jrummikub.model.GameState; import jrummikub.view.IView; -public class GameControl { +public class RoundControl { private GameState gameState; private IView view; - public GameControl(GameState gameState, IView view) { + public RoundControl(GameState gameState, IView view) { this.gameState = gameState; this.view = view; } + public void startRound() { + + } + + void deal() { + + } + private void endOfTurn() { } |