Applied-Energistics-2-tiler.../helpers/IPriorityHost.java

17 lines
183 B
Java
Raw Normal View History

package appeng.helpers;
public interface IPriorityHost
{
/**
* get current priority.
*/
int getPriority();
/**
* set new priority
*/
void setPriority(int newValue);
}