This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
JRummikub/src/jrummikub/view/ITable.java
Matthias Schiffer adcf9fdfb6 Add StoneCollection to handle clicks on collected stones
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@55 72836036-5685-4462-b002-a69064685172
2011-05-02 00:14:09 +02:00

18 lines
426 B
Java

package jrummikub.view;
import java.util.Map;
import jrummikub.model.Position;
import jrummikub.model.StoneSet;
public interface ITable extends IClickable {
public void setLeftPlayerName(String playerName);
public void setTopPlayerName(String playerName);
public void setRightPlayerName(String playerName);
public void setStoneSets(Map<StoneSet, Position> stoneSets);
IStoneCollection getStoneCollection();
}