mirror of
https://github.com/2006-Scape/Parabot.git
synced 2026-07-04 08:39:23 +00:00
First commit
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user