Files
Parabot-317-API-Minified/src/org/rev317/min/api/interfaces/Locatable.java
T
2014-08-19 03:08:07 +02:00

25 lines
441 B
Java

package org.rev317.min.api.interfaces;
import org.rev317.min.api.wrappers.Tile;
/**
* @author Everel
*/
public interface Locatable {
/**
* Gets location of this locatable instance
*
* @return location
*/
public Tile getLocation();
/**
* Gets distance to this locatable instance
*
* @return distance from player to locatable
*/
public int distanceTo();
}