0f75db5e80
and all the stuff I did that i forgot to comment.
16 lines
183 B
Java
16 lines
183 B
Java
package appeng.helpers;
|
|
|
|
public interface IPriorityHost
|
|
{
|
|
|
|
/**
|
|
* get current priority.
|
|
*/
|
|
int getPriority();
|
|
|
|
/**
|
|
* set new priority
|
|
*/
|
|
void setPriority(int newValue);
|
|
|
|
}
|