mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 12:23:59 +00:00
17 lines
No EOL
314 B
Java
17 lines
No EOL
314 B
Java
package com.earth2me.essentials;
|
|
|
|
import org.bukkit.Location;
|
|
|
|
|
|
public class LocationTarget implements ITarget {
|
|
private final Location location;
|
|
|
|
LocationTarget(Location location) {
|
|
this.location = location;
|
|
}
|
|
|
|
@Override
|
|
public Location getLocation() {
|
|
return location;
|
|
}
|
|
} |