summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/Table.java
blob: 59ef01d73f3f3f783e83e399f6ac7d15e0614a3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package jrummikub.model;

/** Class administering the {@link Stone}s on the game-Table */

public class Table extends StoneTray<StoneSet> {

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

	/** Tests the Table for rule conflicts by checking all the {@link StoneSet} */
	public boolean isValid() {
		// TODO implement this method
		return false;
	}

}