RuneHive-Game
Loading...
Searching...
No Matches
EventListener.java
Go to the documentation of this file.
1package com.runehive.game.event.listener;
2
3import com.runehive.game.event.Event;
4
5/**
6 * The base event listener that will listen for any type of event.
7 *
8 * @author nshusa
9 */
10public interface EventListener {
11
12 default void accept(Event event) {
13
14 }
15
16}
The base event listener that will listen for any type of event.
Definition Event.kt:9