cn.nukkit.event.player.PlayerEatFoodEvent 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.player;
import cn.nukkit.Player;
import cn.nukkit.event.Cancellable;
import cn.nukkit.event.HandlerList;
import cn.nukkit.item.food.Food;
/**
* @author Snake1999
* @since 2016/1/14
*/
public class PlayerEatFoodEvent extends PlayerEvent implements Cancellable {
private static final HandlerList handlers = new HandlerList();
private Food food;
public static HandlerList getHandlers() {
return handlers;
}
public PlayerEatFoodEvent(Player player, Food food) {
this.player = player;
this.food = food;
}
public Food getFood() {
return food;
}
public void setFood(Food food) {
this.food = food;
}
}