home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2001 / MacHack 2001.toast / pc / The Hacks / asciishopsource / asciiShop / Asciishop.java.back < prev    next >
Encoding:
Text File  |  2001-06-23  |  514 b   |  30 lines

  1. /** 
  2.  * AsciiShop.java
  3.  *
  4.  * Title:            ASCII Shop
  5.  * Description:        The goal of this program is to provide many functionalities of photoshop, with ASCII art.
  6.  * @author            Expotech
  7.  * @version            
  8.  */
  9.  
  10. package asciiShop;
  11.  
  12. public class AsciiShop {
  13.     public AsciiShop() {
  14.         try {
  15.             mainFrame frame = new mainFrame();
  16.             frame.initComponents();
  17.             frame.setVisible(true);
  18.         }
  19.         catch (Exception e) {
  20.             e.printStackTrace();
  21.         }
  22.     }
  23.  
  24.     // Main entry point
  25.     static public void main(String[] args) {
  26.         new AsciiShop();
  27.     }
  28.     
  29. }
  30.