Is there a performance difference between having a class extend EventDispatcher vs implementing IEventDispatcher.
Reason for the question is I have a class which currently extends EventDispatcher and now it needs to extend another class that is not an EventDispatcher. This will get properly fixed up in a few days but temporarily the answer is to have it implement IEventDispatcher but I was wondering if it is going to effect performance in any way ... tks

