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
This commit is contained in:
parent
8e32bc9e69
commit
6e9c1b539b
7 changed files with 84 additions and 27 deletions
|
@ -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() {
|
||||
|
||||
}
|
Reference in a new issue