package org.andengine.util.adt.queue; import org.andengine.util.adt.list.ISortedList; /** * (c) Zynga 2012 * * @author Nicolas Gramlich <ngramlich@zynga.com> * @since 15:37:19 - 01.02.2012 */ public interface ISortedQueue<T> extends IQueue<T>, ISortedList<T> { // =========================================================== // Constants // =========================================================== // =========================================================== // Methods // =========================================================== }