summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/view/IHandPanel.java
blob: 4573b93fa8804a4dac0c7ed253f642ca9435220b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package jrummikub.view;

import java.util.Map;

import jrummikub.model.Position;
import jrummikub.model.Stone;

/**
 * The view for a player's hand that displays his stones
 */
public interface IHandPanel extends IClickable {
  /**
   * Set the player's stones to display on the board
   * 
   * @param stones
   *          the stones
   */
  public void setStones(Map<Stone, Position> stones);
}