-- Visual version of Bridge Heart.
-- Added 3/23/97

class 
  V_BRIDGE_HEART

inherit

  V_HEART
  undefine
    react, will_accept_stooge, restart, react_to_stooge
  redefine
    get_bitmaps, northwest, get_id
  end

  BRIDGE_HEART
  undefine
    clear
  redefine
    northwest
  end

creation

  make, make_customized

feature{NONE}

  get_bitmaps is
  do
    bitmap := configuration.game_bridge_heart_pixmap( Current )
  end

  get_id is
  do
    id := configuration.bridge_heart_code
  end

  northwest : V_GAME_CELL


end -- class V_BRIDGE_HEART
