blob: a5f54b822f576d717c23cda02ef05b1151dd9fc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package jrummikub.view;
public interface IView {
/**
* @return the table
*/
public ITable getTable();
/**
* @return the playerPanel
*/
public IPlayerPanel getPlayerPanel();
}
|