Added missing TeleportRequest class.

This commit is contained in:
Tobias Ottenweller 2013-05-26 14:52:15 +02:00
parent a5b34458c4
commit 093778f2fb

View File

@ -1,11 +1,37 @@
package de.craftinc.gates.util;
/**
* Created with IntelliJ IDEA.
* User: tobi
* Date: 26.05.13
* Time: 14:28
* To change this template use File | Settings | File Templates.
*/
public class TeleportRequest {
import org.bukkit.Location;
import org.bukkit.entity.Player;
public class TeleportRequest
{
private Player player;
private Location destination;
public TeleportRequest(Player player, Location destination)
{
if (player == null) {
throw new IllegalArgumentException("Player must not be null!");
}
if (destination == null) {
throw new IllegalArgumentException("Destination must not be null");
}
this.player = player;
this.destination = destination;
}
public Player getPlayer()
{
return player;
}
public Location getDestination()
{
return destination;
}
}