2019-08-26 14:22:24 +03:00
|
|
|
package pro.gravit.launcher.server;
|
|
|
|
|
2019-08-31 15:44:43 +03:00
|
|
|
import pro.gravit.launcher.modules.impl.SimpleModuleManager;
|
|
|
|
|
2019-10-19 19:46:04 +03:00
|
|
|
import java.nio.file.Path;
|
|
|
|
|
2019-08-26 14:22:24 +03:00
|
|
|
public class ServerWrapperModulesManager extends SimpleModuleManager {
|
|
|
|
public ServerWrapperModulesManager(Path modulesDir, Path configDir) {
|
|
|
|
super(modulesDir, configDir);
|
|
|
|
}
|
2019-10-19 19:46:04 +03:00
|
|
|
|
|
|
|
public void fullInitializeServerWrapper(ServerWrapper serverWrapper) {
|
2019-08-26 14:22:24 +03:00
|
|
|
initContext = new ServerWrapperInitContext(serverWrapper);
|
|
|
|
}
|
|
|
|
}
|