mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-18 22:49:45 +00:00
20 lines
No EOL
286 B
Java
20 lines
No EOL
286 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;
|
|
}
|
|
} |