Applied-Energistics-2-tiler.../helpers/IPriorityHost.java
AlgorithmX2 0f75db5e80 Pretty much all of security minus the gui.
and all the stuff I did that i forgot to comment.
2014-01-26 22:00:36 -06:00

17 lines
183 B
Java

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