mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-03 00:37:55 +00:00
25 lines
508 B
Java
25 lines
508 B
Java
package org.parabot;
|
|
|
|
import javax.swing.UIManager;
|
|
|
|
import org.parabot.core.ui.ServerSelector;
|
|
|
|
/**
|
|
* Parabot X - A revolution in bot clients
|
|
*
|
|
* @author Clisprail
|
|
* @author Matt, Dane, Queue, Parameter
|
|
* @version 2.0
|
|
*/
|
|
public class Landing {
|
|
|
|
public static void main(String... args) {
|
|
try {
|
|
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
|
|
} catch (Throwable t) {
|
|
t.printStackTrace();
|
|
}
|
|
ServerSelector.getInstance().setVisible(true);
|
|
}
|
|
}
|