A simple, simple wrapper of net.minecraftforge.fml.common.eventhandler.Event. @author Zihasz
| 5 | * @author Zihasz |
| 6 | */ |
| 7 | public abstract class Event extends net.minecraftforge.fml.common.eventhandler.Event { |
| 8 | |
| 9 | public Event() {} |
| 10 | |
| 11 | /** |
| 12 | * Cancels the event. |
| 13 | */ |
| 14 | public void cancel() { this.setCanceled(true); } |
| 15 | |
| 16 | @Override |
| 17 | public boolean isCancelable() { return true; } |
| 18 | |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected