summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/view/IPlayerPanel.java
blob: 3330804458b48d51d3eff4948674137a31d2e806 (plain)
1
2
3
4
5
6
7
8
package jrummikub.view;

public interface IPlayerPanel {
  public IBoard getBoard();
  
  public void setCurrentPlayerName(String playerName);
  public void setTimeLeft(int time);
}