11 lines
148 B
Java
11 lines
148 B
Java
|
package appeng.integration;
|
||
|
|
||
|
public interface IIntegrationModule
|
||
|
{
|
||
|
|
||
|
void Init() throws Throwable;
|
||
|
|
||
|
void PostInit() throws Throwable;
|
||
|
|
||
|
}
|