Advertisement
Guest User

Untitled

a guest
Jun 28th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. package dice;
  2.  
  3. import javax.swing.JFrame;
  4.  
  5. /**
  6.  *
  7.  * @author phani
  8.  */
  9. public class Main {
  10.  
  11.     /**
  12.      * @param args the command line arguments
  13.      */
  14.     public static void main(String[] args) {
  15.         JFrame frame = new Interface();
  16.         frame.setVisible(true);
  17.     }
  18.  
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement