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

cn.nukkit.event.block.WaterFrostEvent 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.entity.Entity;
import cn.nukkit.event.Cancellable;
import cn.nukkit.event.HandlerList;

@PowerNukkitOnly
public class WaterFrostEvent extends BlockEvent implements Cancellable {

    private static final HandlerList handlers = new HandlerList();

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

    @PowerNukkitOnly
    protected final Entity entity;

    @PowerNukkitOnly
    public WaterFrostEvent(Block block, Entity entity) {
        super(block);
        this.entity = entity;
    }

    @PowerNukkitOnly
    public Entity getEntity() {
        return entity;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy