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