-- The visual version of a Heart. Needs to vanish when the Stooge claims it.

class V_HEART

inherit

  V_SESSILE
  undefine
    react, will_accept_stooge, restart, 
    create_record, build_record, customized_init
  redefine
    northwest
  end

  HEART
  undefine
    clear
  redefine
    northwest
  end

creation

  make, make_customized

feature{NONE}

  get_bitmaps is
  do
    bitmap := configuration.game_heart_pixmap( Current )
  end

  get_id is
  do
    id := configuration.heart_code
  end

feature

  northwest : V_GAME_CELL

end 
