LOOHP-Limbo/src/com/loohp/limbo/Events/PlayerTeleportEvent.java

13 lines
280 B
Java

package com.loohp.limbo.Events;
import com.loohp.limbo.Location.Location;
import com.loohp.limbo.Player.Player;
public class PlayerTeleportEvent extends PlayerMoveEvent {
public PlayerTeleportEvent(Player player, Location from, Location to) {
super(player, from, to);
}
}