summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/ITable.java
blob: 08ca242e0fcbf5f13215f3b8b5996270ba3c268c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package jrummikub.model;

public interface ITable extends IStoneTray<StoneSet> {

	/**
	 * Removes {@link Stone} from the Table
	 * 
	 * @param stone
	 *          stone to pick up
	 */
	public void pickUpStone(Stone stone);

	/** Tests the Table for rule conflicts by checking all the {@link StoneSet} */
	public boolean isValid();

}