IEventDispatcher interface
Пакет: com.hypixel.hytale.event
Файл: com/hypixel/hytale/event/IEventDispatcher.java
Методы (2)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
abstract |
ReturnType |
dispatchReturnType dispatch(@Nullable EventType var1) |
default |
boolean |
hasListenerboolean hasListener() |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.event;
class="kw">import javax.annotation.Nullable;
class="kw">public class="kw">interface IEventDispatcher<EventType class="kw">extends IBaseEvent, ReturnType> {
class="kw">default boolean hasListener() {
class="kw">return true;
}
ReturnType dispatch(@Nullable EventType var1);
}