Applied-Energistics-2-tiler.../util/prioitylist/IPartitionList.java

15 lines
226 B
Java
Raw Normal View History

package appeng.util.prioitylist;
import appeng.api.storage.data.IAEStack;
public interface IPartitionList<T extends IAEStack<T>>
{
boolean isListed(T input);
boolean isEmpty();
Iterable<T> getItems();
}