Applied-Energistics-2-tiler.../integration/BaseModule.java

17 lines
308 B
Java
Raw Normal View History

2014-02-18 18:43:02 +01:00
package appeng.integration;
2014-02-20 00:33:36 +01:00
public abstract class BaseModule implements IIntegrationModule {
2014-02-18 18:43:02 +01:00
protected void TestClass( Class clz )
{
clz.isInstance(this);
}
2014-02-20 00:33:36 +01:00
@Override
public abstract void Init() throws Throwable;
@Override
public abstract void PostInit() throws Throwable;
2014-02-18 18:43:02 +01:00
}