blob: 79c15a44e1af291c94580bd8fa53a52212743493 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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();
}
|