All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.minestom.server.event.trait.InstanceEvent Maven / Gradle / Ivy

There is a newer version: 7320437640
Show newest version
package net.minestom.server.event.trait;

import net.minestom.server.event.Event;
import net.minestom.server.instance.Instance;
import org.jetbrains.annotations.NotNull;

/**
 * Represents any event targeting an {@link Instance}.
 */
public interface InstanceEvent extends Event {

    /**
     * Gets the instance.
     *
     * @return instance
     */
    @NotNull Instance getInstance();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy