TF-EssentialsX/Essentials/src/com/earth2me/essentials/LocationTarget.java

17 lines
314 B
Java
Raw Normal View History

2013-06-08 20:40:02 +00:00
package com.earth2me.essentials;
import org.bukkit.Location;
2015-04-15 04:06:16 +00:00
public class LocationTarget implements ITarget {
private final Location location;
2013-06-08 20:40:02 +00:00
2015-04-15 04:06:16 +00:00
LocationTarget(Location location) {
this.location = location;
}
2013-06-08 20:40:02 +00:00
2015-04-15 04:06:16 +00:00
@Override
public Location getLocation() {
return location;
}
2013-06-08 20:40:02 +00:00
}