blob: b141530fca8bf5d2b34d75b8bdb033278d20af50 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package pokemon;
import java.awt.BorderLayout;
import javax.swing.SwingUtilities;
import ui.MainFrame;
import ui.ChooseOpponentPanel;
import ui.GamePanel;
import ui.LoginPanel;
public class Client {
public static void main(String[] args) {
MainFrame frame=new MainFrame();
LoginPanel p=new LoginPanel();
frame.add(p,BorderLayout.CENTER);
frame.setVisible(true);
//SwingUtilities.updateComponentTreeUI(frame);
}
}
|