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/model/Table.java

24 lines
484 B
Java
Raw Normal View History

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;
}
}