package mightypork.utils.control.bus.events; /** * Something that can be handled by HANDLER. * * @author MightyPork * @param handler type */ public interface Event { /** * Ask handler to handle this message. * * @param handler handler instance */ public void handleBy(HANDLER handler); }