EventHandler.java 252 Bytes
Newer Older
KingRainbow44's avatar
KingRainbow44 committed
1
2
3
4
5
6
7
8
9
10
11
package emu.grasscutter.server.event;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/**
 * Declares a class as an event listener/handler.
 */
@Retention(RetentionPolicy.RUNTIME)
public @interface EventHandler {
}