summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/control/RoundControl.java
diff options
context:
space:
mode:
authorIda Massow <massow@informatik.uni-luebeck.de>2011-05-04 23:26:01 +0200
committerIda Massow <massow@informatik.uni-luebeck.de>2011-05-04 23:26:01 +0200
commite2f82f3f28a0872ed626439809a292e701c9b01e (patch)
tree30ad0cd035cd204ed26291f19fd1244a1e8b47ce /src/jrummikub/control/RoundControl.java
parentdb7489a5c78551e4db52acd11656f2b872740f89 (diff)
downloadJRummikub-e2f82f3f28a0872ed626439809a292e701c9b01e.tar
JRummikub-e2f82f3f28a0872ed626439809a292e701c9b01e.zip
Test für RoundControl fertig
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@128 72836036-5685-4462-b002-a69064685172
Diffstat (limited to 'src/jrummikub/control/RoundControl.java')
-rw-r--r--src/jrummikub/control/RoundControl.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jrummikub/control/RoundControl.java b/src/jrummikub/control/RoundControl.java
index ec08050..a481991 100644
--- a/src/jrummikub/control/RoundControl.java
+++ b/src/jrummikub/control/RoundControl.java
@@ -1,16 +1,16 @@
package jrummikub.control;
-import jrummikub.model.GameState;
+import jrummikub.model.IGameState;
import jrummikub.model.IHand;
import jrummikub.model.Player;
import jrummikub.model.Position;
import jrummikub.view.IView;
public class RoundControl {
- private GameState gameState;
+ private IGameState gameState;
private IView view;
- public RoundControl(GameState gameState, IView view) {
+ public RoundControl(IGameState gameState, IView view) {
this.gameState = gameState;
this.view = view;
}