package jrummikub.view;
/**
* The view of the collection that shows the stones a player has selected
*/
public interface IStoneCollectionPanel extends IStonePanel {
/**
* Hide stone collection
*
* @param enable
* see stone collection
*/
void setHidden(boolean enable);
}