-- Visual version of the PUZZLE_TREE.

class V_TREE

inherit

  V_SESSILE
  undefine
    restart, create_record, build_record, customized_init
  redefine
    northwest
  end

  PUZZLE_TREE
  undefine
    clear
  redefine
    northwest
  end

creation

  make, make_customized

feature{NONE}

  get_bitmaps is
  do
    bitmap := configuration.game_tree_pixmap( Current )
  end

  get_id is
  do
    id := configuration.tree_code
  end

feature

  northwest : V_GAME_CELL

end 
