Added interfaces for model classes

git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@104 72836036-5685-4462-b002-a69064685172
This commit is contained in:
Bennet Gerlach 2011-05-04 16:23:10 +02:00
parent b5bbfc25de
commit c9843770dd
9 changed files with 129 additions and 58 deletions

View file

@ -2,19 +2,19 @@ package jrummikub.control;
import jrummikub.model.Hand;
import jrummikub.model.Table;
import jrummikub.model.ITable;
import jrummikub.util.Event;
import jrummikub.util.IEvent;
import jrummikub.view.IView;
public class TurnControl {
private Hand hand;
private Table table;
private ITable table;
private TurnTimer timer;
private IView view;
private Event endOfTurnEvent = new Event();
public TurnControl(Hand hand, Table table, IView view) {
public TurnControl(Hand hand, ITable table, IView view) {
this.hand = hand;
this.table = table;
this.view = view;