blob: b4243a3fc0e71386af28c1b358c79b3a2301a9f9 [file] [log] [blame] [raw]
package appeng.api.me.tiles;
public interface IPriorityTile
{
/**
* gets the current priroity, can be negitive or positive.
* implemented by storage systems, and is used for sorting.
* @return
*/
int getPriority();
/**
* change the priority.
* @param p
*/
void setPriority( int p );
}