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

19 lines
426 B
Java
Raw Normal View History

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();
}