Added JEI integration (#2436).

This commit is contained in:
Sebastian Hartte
2016-10-04 01:34:29 +02:00
parent b8344da734
commit 8df692053a
46 changed files with 1555 additions and 170 deletions
@@ -0,0 +1,15 @@
package appeng.integration.abstraction;
/**
* Abstracts access to the JEI API functionality.
*/
public interface IJEI
{
boolean isEnabled();
String getSearchText();
void setSearchText( String searchText );
}