8 lines
181 B
Java
8 lines
181 B
Java
|
package jrummikub.view;
|
||
|
|
||
|
public interface IPlayerPanel {
|
||
|
public IBoard getBoard();
|
||
|
|
||
|
public void setCurrentPlayerName(String playerName);
|
||
|
public void setTimeLeft(int time);
|
||
|
}
|