Can all Forge events be handled by a Sponge plugin?
I’m trying to make a plugin that listens for a certain mod’s event (said event extends Forge’s Event class) without having that mod as a dependency.
Does Sponge have a mixin to hook into Forge’s Event class and make it inherit of Sponge’s Event interface?
I.e. Can Forge’s events be handled by a Sponge plugin without modifying the Forge event?
Edit: I know how to use reflection, I just want to know if I will hear the event from a Sponge listener. I also know that Sponge uses Forge’s event bus.