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/IHandPanel.java
Jannis Harder 50f1d6c05a Changed view implementation to use Iterable of Pairs
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@129 72836036-5685-4462-b002-a69064685172
2011-05-04 23:28:39 +02:00

18 lines
426 B
Java

package jrummikub.view;
import jrummikub.model.Position;
import jrummikub.model.Stone;
import jrummikub.util.Pair;
/**
* The view for a player's hand that displays his stones
*/
public interface IHandPanel extends IStonePanel, IClickable {
/**
* Set the player's stones to display on the board
*
* @param stones
* the stones
*/
public void setStones(Iterable<Pair<Stone, Position>> stones);
}