package com.hypixel.hytale.event; import javax.annotation.Nullable; public interface IEventDispatcher { default boolean hasListener() { return true; } ReturnType dispatch(@Nullable EventType var1); }