mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-05-01 07:04:32 +02:00
18 lines
470 B
Java
18 lines
470 B
Java
package org.prismlauncher.legacy;
|
|
|
|
import org.prismlauncher.launcher.Launcher;
|
|
import org.prismlauncher.utils.Parameters;
|
|
|
|
// used as a fallback if NewLaunchLegacy is not on the classpath
|
|
// if it is, this class will be replaced
|
|
public final class LegacyProxy {
|
|
|
|
public static Launcher createLauncher(Parameters params) {
|
|
throw new AssertionError("NewLaunchLegacy is not loaded");
|
|
}
|
|
|
|
public static void applyOnlineFixes(Parameters params) {
|
|
}
|
|
|
|
}
|