# File lib/rubygame/event_triggers.rb, line 202
        def match?( event )
                @attributes.all? { |key, value|
                        event.respond_to?(key) and (event.send(key) == value)
                }
        end