Re-arranged code

This commit is contained in:
JKetelaar
2014-08-19 03:08:07 +02:00
parent d19933b14f
commit 88050384f8
54 changed files with 2867 additions and 2843 deletions
@@ -3,22 +3,22 @@ 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();
/**
* 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();
}