# File lib/luck/ansi.rb, line 34
  def resized?
    size = terminal_size
    
    return false if [@height, @width] == size
    
    @height, @width = size
    true
  end