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