Advertisement
MinimalChampion

TestPlayerGUI

Nov 23rd, 2014
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. import javax.swing.JFrame;
  2.  
  3. public class MainClass {
  4.  
  5.     public static void main(String[] args) {
  6.  
  7.         PlayerGUI gui = new PlayerGUI();
  8.         gui.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  9.         gui.setSize(250, 235);
  10.         gui.setVisible(true);
  11.  
  12.         // Player p1 = gui.createPlayer();
  13.     }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement