Package net.drthum.simon

Source Code of net.drthum.simon.Main

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package net.drthum.simon;

import net.drthum.simon.gui.MainGUI;

/**
*
* @author DrThum
*/
public class Main {

    /**
     * @param args Not used
     */
    public static void main(String[] args) {
        MainGUI gui = new MainGUI();
        gui.setVisible(true);
    }
}
TOP

Related Classes of net.drthum.simon.Main

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.