Added Crafting/Stored/Both setting to ItemRepo

This commit is contained in:
AlgorithmX2
2014-05-22 21:41:09 -05:00
parent 5f5fc4cee1
commit e2c3e18133
4 changed files with 41 additions and 0 deletions
+14
View File
@@ -1,10 +1,24 @@
package appeng.client.gui.widgets;
import appeng.api.config.SortDir;
import appeng.api.config.ViewItems;
public interface ISortSource
{
/**
* @return Sor
*/
Enum getSortBy();
/**
* @return {@link SortDir}
*/
Enum getSortDir();
/**
* @return {@link ViewItems}
*/
Enum getSortDisplay();
}