Launcher/ServerWrapper/src/main/java/pro/gravit/launcher/server/ServerWrapperInitContext.java

12 lines
331 B
Java
Raw Normal View History

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;
}
}