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

import jrummikub.util.IEvent;

public interface IPlayerPanel {
  public IBoard getBoard();

  public void setCurrentPlayerName(String playerName);

  public void setTimeLeft(int time);

  public IEvent getSortByNumberEvent();

  public IEvent getSortByColorEvent();

  public IEvent getEndTurnEvent();
}