Recipe API Update.

This commit is contained in:
AlgorithmX2
2014-02-19 17:33:36 -06:00
parent 85b053f6b5
commit bea8f2cc07
26 changed files with 292 additions and 203 deletions
+7 -1
View File
@@ -1,10 +1,16 @@
package appeng.integration;
public class BaseModule {
public abstract class BaseModule implements IIntegrationModule {
protected void TestClass( Class clz )
{
clz.isInstance(this);
}
@Override
public abstract void Init() throws Throwable;
@Override
public abstract void PostInit() throws Throwable;
}