summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/api/IWarps.java
blob: 14779e327fa3dda8951567cf2232ee697c164822 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.earth2me.essentials.api;

import java.util.Collection;
import org.bukkit.Location;


public interface IWarps extends IReload
{
	Location getWarp(String warp) throws Exception;

	Collection<String> getWarps();

	void removeWarp(String name) throws Exception;

	void setWarp(String name, Location loc) throws Exception;
}