class Game_Map
  
  def width
    @map.width
  end  
  
  def height
    @map.height
  end  
    
  def m_size
    width * height
  end  
end  