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

public interface ITable {

	/**
	 * 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();

}