import javax.swing.tree.*;

/** interface specifying game trees */
public interface GameTree extends TreeModel {
    /** return the game state of the root of the tree */
    Game getRootGame();
    /** return the game of a given node of the tree */
    Game getGameForNode(Object node);
}
