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

cn.nukkit.event.block.ConduitActivateEvent Maven / Gradle / Ivy

There is a newer version: 1.20.40-r1
Show newest version
package cn.nukkit.event.block;

import cn.nukkit.api.PowerNukkitOnly;
import cn.nukkit.block.Block;
import cn.nukkit.event.HandlerList;

@PowerNukkitOnly
public class ConduitActivateEvent extends BlockEvent {

    private static final HandlerList handlers = new HandlerList();

    @PowerNukkitOnly
    public ConduitActivateEvent(Block block) {
        super(block);
    }

    @PowerNukkitOnly
    public static HandlerList getHandlers() {
        return handlers;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy