Changed package

This commit is contained in:
Clisprail
2014-04-10 18:50:44 +02:00
parent 3ccded6853
commit c353f54f02
48 changed files with 148 additions and 148 deletions
@@ -0,0 +1,24 @@
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();
}