Guest User

Untitled

a guest
May 20th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. public class TestTicTacToeFrame {
  2. public static void main(String[] args) {
  3. TicTacToeFrame f = new TicTacToeFrame();
  4. f.setTitle("TicTacToe Game");
  5. f.setSize(300,250);
  6. f.setVisible(true);
  7. f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  8. }
  9. }
Add Comment
Please, Sign In to add comment