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

17 lines
314 B
Java
Raw Normal View History

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