# File lib/rubygame/events/mouse_events.rb, line 140
      def initialize( pos, rel, buttons=[] )

        @pos = pos.to_ary.dup
        @pos.freeze

        @rel = rel.to_ary.dup
        @rel.freeze

        @buttons = buttons.to_ary.dup
        @buttons.freeze

      end