1 2 3 4 5 6 7 8
package jrummikub.view; public interface IPlayerPanel { public IBoard getBoard(); public void setCurrentPlayerName(String playerName); public void setTimeLeft(int time); }