Advertisement
Black_Spider

FTE App.java

Apr 10th, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.22 KB | None | 0 0
  1. import javax.swing.*;
  2.  
  3. public class App {
  4.  
  5.     public static void main(String[] args) {
  6.         Gui go = new Gui();
  7.         go.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  8.         go.setSize(600, 520);
  9.         go.setVisible(true);
  10.  
  11.     }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement