mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-05 16:49:41 +00:00
31 lines
635 B
Java
31 lines
635 B
Java
package org.parabot;
|
|
|
|
import javax.swing.UIManager;
|
|
|
|
import org.parabot.core.Core;
|
|
import org.parabot.core.Directories;
|
|
import org.parabot.core.ui.ServerSelector;
|
|
|
|
/**
|
|
* Parabot X - A revolution in bot clients
|
|
*
|
|
* @author Clisprail (Parnassian)
|
|
* @author Matt, Dane
|
|
* @version 2.0
|
|
*/
|
|
public final class Landing {
|
|
|
|
public static void main(String... args) {
|
|
try {
|
|
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
|
|
} catch (Throwable t) {
|
|
t.printStackTrace();
|
|
}
|
|
Directories.validate();
|
|
Core.enableDevMode();
|
|
ServerSelector.getInstance().setVisible(true);
|
|
}
|
|
|
|
|
|
}
|