cn.nukkit.event.entity.EntityCombustByEntityEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.event.entity;
import cn.nukkit.entity.Entity;
/**
* @author MagicDroidX (Nukkit Project)
*/
public class EntityCombustByEntityEvent extends EntityCombustEvent {
protected final Entity combuster;
public EntityCombustByEntityEvent(Entity combuster, Entity combustee, int duration) {
super(combustee, duration);
this.combuster = combuster;
}
public Entity getCombuster() {
return combuster;
}
}