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

net.minestom.server.event.trait.InventoryEvent 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.inventory.Inventory;
import org.jetbrains.annotations.Nullable;

/**
 * Represents any event inside an {@link Inventory}.
 */
public interface InventoryEvent extends Event {

    /**
     * Gets the inventory.
     *
     * @return the inventory, null if this is a player's inventory
     */
    @Nullable Inventory getInventory();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy