Test für RoundControl fertig
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@128 72836036-5685-4462-b002-a69064685172
This commit is contained in:
parent
db7489a5c7
commit
e2f82f3f28
10 changed files with 296 additions and 36 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Reference in a new issue