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/IView.java
Matthias Schiffer d262d91b07 Add display for selected stones above board
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@41 72836036-5685-4462-b002-a69064685172
2011-04-30 23:17:48 +02:00

19 lines
No EOL
317 B
Java

package jrummikub.view;
import java.util.Collection;
import jrummikub.model.Stone;
public interface IView {
/**
* @return the table
*/
public ITable getTable();
/**
* @return the playerPanel
*/
public IPlayerPanel getPlayerPanel();
public void setSelectedStones(Collection<Stone> stones);
}