-- Visual version of the Rock.

class V_ROCK

inherit

  V_SESSILE
  undefine
    customized_init
  redefine
    northwest
  end

  ROCK
  undefine
    clear
  redefine
    northwest
  end

creation

  make, make_customized

feature{NONE}

  get_bitmaps is
  do
    bitmap := configuration.game_rock_pixmap( Current )
  end

  get_id is
  do
    id := configuration.rock_code
  end


feature

  northwest : V_GAME_CELL

end 
