package zhuye;
|
|
import javax.swing.JFrame;
|
import javax.swing.SwingUtilities;
|
import udpdell.UDPServer;
|
|
public class ShouyeLauncher {
|
public static void main(String[] args) {
|
SwingUtilities.invokeLater(() -> {
|
System.out.println("Starting Shouye via Launcher...");
|
JFrame frame = new JFrame("AutoMow - 首页");
|
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
frame.setSize(400, 800);
|
frame.setLocationRelativeTo(null);
|
|
Shouye shouye = new Shouye();
|
frame.add(shouye);
|
|
frame.setVisible(true);
|
UDPServer.startAsync();
|
});
|
}
|
}
|