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

15 lines
198 B
Java
Raw Normal View History

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