This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
JRummikub/src/jrummikub/view/IPlayerPanel.java

18 lines
329 B
Java
Raw Normal View History

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