2014-04-06 08:55:24 +02:00
|
|
|
package appeng.integration.modules;
|
|
|
|
|
2014-06-26 04:19:20 +02:00
|
|
|
import powercrystals.minefactoryreloaded.api.rednet.connectivity.IRedNetConnection;
|
2014-04-06 08:55:24 +02:00
|
|
|
import appeng.integration.BaseModule;
|
|
|
|
|
|
|
|
public class MFR extends BaseModule
|
|
|
|
{
|
|
|
|
|
|
|
|
public static MFR instance;
|
|
|
|
|
|
|
|
public MFR() {
|
2014-06-26 04:19:20 +02:00
|
|
|
TestClass( IRedNetConnection.class );
|
2014-04-06 08:55:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void Init() throws Throwable
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void PostInit() throws Throwable
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|