The Object::SubscribeToEvent method is public.
Normally, we call it in the context of “this” class, but because it is public, in theory, it can be called on any valid object instance pointer, by any caller, while the actual handler for the event can be also, in ANY class that supports event handling, and by receiver instance.
This implies, in theory, that we can do some funky things with event redirection.
Am I correct, or way off track?