-- Visual version of water.

class V_WATER

inherit

  V_SESSILE
  undefine
    customized_init
  redefine
    northwest
  end

  WATER
  undefine
    clear
  redefine
    northwest
  end

creation

  make, make_customized

feature{NONE}

  get_bitmaps is
  do
    bitmap := configuration.game_water_pixmap( Current )
  end

  get_id is
  do
    id := configuration.water_code
  end

feature

  northwest : V_GAME_CELL


end 
