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/IView.java
Matthias Schiffer a526d2efbf Created basic view
git-svn-id: svn://sunsvr01.isp.uni-luebeck.de/swproj13/trunk@3 72836036-5685-4462-b002-a69064685172
2011-04-27 20:25:37 +02:00

15 lines
No EOL
198 B
Java

package jrummikub.view;
public interface IView {
/**
* @return the table
*/
public ITable getTable();
/**
* @return the playerPanel
*/
public IPlayerPanel getPlayerPanel();
}