mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-02-11 08:43:07 +03:00
18 lines
318 B
Java
18 lines
318 B
Java
package ru.gravit.launcher.modules;
|
|
|
|
import ru.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);
|
|
}
|