mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 19:49:11 +03:00
17 lines
319 B
Java
17 lines
319 B
Java
|
package ru.gravit.launcher.modules;
|
||
|
|
||
|
import ru.gravit.launcher.LauncherVersion;
|
||
|
|
||
|
public interface Module extends AutoCloseable {
|
||
|
|
||
|
String getName();
|
||
|
|
||
|
LauncherVersion getVersion();
|
||
|
|
||
|
void init(ModuleContext context);
|
||
|
|
||
|
void postInit(ModuleContext context);
|
||
|
|
||
|
void preInit(ModuleContext context);
|
||
|
}
|