summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/view/IView.java
blob: 1fcc6dc99dd26b7ea320f2de7d75816fb4c5c263 (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.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);
}