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