com.github.frontear.efkolia.impl.events.Event Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Efkolia Show documentation
Show all versions of Efkolia Show documentation
A simple framework designed for Minecraft modding
package com.github.frontear.efkolia.impl.events;
import lombok.Getter;
public abstract class Event {
@Getter private boolean cancelled;
public final void cancel() {
this.cancelled = true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy