Advertisement
darkhelmet125

tictactoeDriver.java

Oct 12th, 2012
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.38 KB | None | 0 0
  1. import javax.swing.JFrame;
  2. //creates window and frame
  3. public class tictactoeDriver
  4. {
  5.     public static void main(String[] args)
  6.     {
  7.         tictactoeFrame myframe = new tictactoeFrame();
  8.         myframe.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//exits program if window closed
  9.         myframe.setSize(350,300);//size of frame
  10.         myframe.setVisible(true);
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement