mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-23 17:11:39 +03:00
12 lines
331 B
Java
12 lines
331 B
Java
|
package pro.gravit.launcher.server;
|
||
|
|
||
|
import pro.gravit.launcher.modules.LauncherInitContext;
|
||
|
|
||
|
public class ServerWrapperInitContext implements LauncherInitContext {
|
||
|
public final ServerWrapper serverWrapper;
|
||
|
|
||
|
public ServerWrapperInitContext(ServerWrapper serverWrapper) {
|
||
|
this.serverWrapper = serverWrapper;
|
||
|
}
|
||
|
}
|