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

17 lines
308 B
Java
Raw Normal View History

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