TabooLib/src/main/scala/io/izzel/taboolib/common/event/PlayerJumpEvent.java

18 lines
382 B
Java
Raw Normal View History

2019-07-06 04:03:15 +00:00
package io.izzel.taboolib.common.event;
2018-02-06 06:46:14 +00:00
import io.izzel.taboolib.module.event.EventCancellable;
2018-02-06 06:46:14 +00:00
import org.bukkit.entity.Player;
public class PlayerJumpEvent extends EventCancellable<PlayerJumpEvent> {
2018-05-07 06:43:57 +00:00
private Player player;
2019-08-18 07:07:39 +00:00
public PlayerJumpEvent(Player player) {
2018-05-07 06:43:57 +00:00
this.player = player;
}
public Player getPlayer() {
return this.player;
}
2018-02-06 06:46:14 +00:00
}