MCPcopy Create free account
hub / github.com/ZWareDevelopment/ClientBase / Event

Class Event

src/main/java/dev/zihasz/client/event/Event.java:7–19  ·  view source on GitHub ↗

A simple, simple wrapper of net.minecraftforge.fml.common.eventhandler.Event. @author Zihasz

Source from the content-addressed store, hash-verified

5 * @author Zihasz
6 */
7public 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected