Launcher/Launcher/src/main/java/pro/gravit/launcher/gui/NoRuntimeProvider.java
2023-04-03 13:04:12 +07:00

20 lines
597 B
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package pro.gravit.launcher.gui;
import javax.swing.*;
public class NoRuntimeProvider implements RuntimeProvider {
@Override
public void run(String[] args) {
JOptionPane.showMessageDialog(null, "GUI часть лаунчера не найдена.\nС 5.1.0 вам необходимо самостоятельно установить модуль, отвечающий за GUI. Рантайм на JS более не поддерживается");
}
@Override
public void preLoad() {
}
@Override
public void init(boolean clientInstance) {
}
}