15 lines
198 B
Java
15 lines
198 B
Java
|
package jrummikub.view;
|
||
|
|
||
|
public interface IView {
|
||
|
|
||
|
/**
|
||
|
* @return the table
|
||
|
*/
|
||
|
public ITable getTable();
|
||
|
|
||
|
/**
|
||
|
* @return the playerPanel
|
||
|
*/
|
||
|
public IPlayerPanel getPlayerPanel();
|
||
|
|
||
|
}
|