Implement an event handler

This commit is contained in:
KingRainbow44
2022-04-23 01:58:37 -04:00
parent 7a3fbcdcf7
commit 6056e962d6
6 changed files with 116 additions and 4 deletions

View File

@@ -0,0 +1,8 @@
package emu.grasscutter.server.event;
/**
* Implementing this interface marks an event as cancellable.
*/
public interface Cancellable {
void cancel();
}