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(); }