mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-11-15 11:39:11 +03:00
16 lines
470 B
Java
16 lines
470 B
Java
|
package pro.gravit.launcher.server;
|
||
|
|
||
|
import pro.gravit.launcher.modules.impl.SimpleModuleManager;
|
||
|
|
||
|
import java.nio.file.Path;
|
||
|
|
||
|
public class ServerWrapperModulesManager extends SimpleModuleManager {
|
||
|
public ServerWrapperModulesManager(Path modulesDir, Path configDir) {
|
||
|
super(modulesDir, configDir);
|
||
|
}
|
||
|
public void fullInitializeServerWrapper(ServerWrapper serverWrapper)
|
||
|
{
|
||
|
initContext = new ServerWrapperInitContext(serverWrapper);
|
||
|
}
|
||
|
}
|