# File lib/rubygame/rect.rb, line 363
        def midbottom=(midbottom)
        raise ArgumentError, "Rect#midbottom= takes an Array of form [x, y]." if midbottom.size != 2
                self.centerx, self.bottom = midbottom
                return midbottom
        end