25 lines
358 B
Java
25 lines
358 B
Java
|
package appeng.integration.modules;
|
||
|
|
||
|
import appeng.integration.IIntegrationModule;
|
||
|
|
||
|
public class Mystcraft implements IIntegrationModule
|
||
|
{
|
||
|
|
||
|
public static Mystcraft instance;
|
||
|
|
||
|
@Override
|
||
|
public void Init()
|
||
|
{
|
||
|
// TODO Auto-generated method stub
|
||
|
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public void PostInit()
|
||
|
{
|
||
|
// TODO Auto-generated method stub
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|