Class PlayerMoveEvent
- java.lang.Object
-
- me.clientastisch.events.event.impl.player.movement.PlayerMoveEvent
-
- All Implemented Interfaces:
Event<PlayerMoveEvent>
public abstract class PlayerMoveEvent extends java.lang.Object implements Event<PlayerMoveEvent>
- Since:
- CAC v. 0.9958
- Author:
- Clientastisch
-
-
Constructor Summary
Constructors Constructor Description PlayerMoveEvent()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract double
getDeltaX()
abstract double
getDeltaXYZ()
abstract double
getDeltaXZ()
abstract double
getDeltaY()
abstract double
getDeltaZ()
abstract org.bukkit.Location
getFrom()
abstract org.bukkit.Location
getTo()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface me.clientastisch.events.event.Event
cancelled, continued, getController, getPacket, getPipeline, getPlayer, getUUID, isCancelled, isContinue
-
-
-
-
Method Detail
-
getFrom
public abstract org.bukkit.Location getFrom()
-
getTo
public abstract org.bukkit.Location getTo()
-
getDeltaXZ
public abstract double getDeltaXZ()
-
getDeltaY
public abstract double getDeltaY()
-
getDeltaXYZ
public abstract double getDeltaXYZ()
-
getDeltaX
public abstract double getDeltaX()
-
getDeltaZ
public abstract double getDeltaZ()
-
-