summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/LocationTarget.java
blob: 1641373af530e528081b0eb33d02ba4512b8dcab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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;
	}
}