mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
22 lines
391 B
Java
22 lines
391 B
Java
package pro.gravit.launcher.modules;
|
|
|
|
import pro.gravit.utils.Version;
|
|
|
|
public interface Module extends AutoCloseable {
|
|
|
|
String getName();
|
|
|
|
Version getVersion();
|
|
|
|
int getPriority();
|
|
|
|
void init(ModuleContext context);
|
|
|
|
void postInit(ModuleContext context);
|
|
|
|
void preInit(ModuleContext context);
|
|
|
|
default void finish(ModuleContext context) {
|
|
// NOP
|
|
}
|
|
}
|