Package com.supinfo.jastermindclient

Source Code of com.supinfo.jastermindclient.GuiLauncher

package com.supinfo.jastermindclient;

import com.supinfo.jastermindclient.gui.JMFrame;

/**
* The launcher class for the GUI JasterMind client.<br />
* It does nothing more than creating a new JMFrame.
*
* @author Mathias Védrines
* @see JMFrame
*/

public class GuiLauncher
{

    /**
     * @param args - unused
     */
    public static void main(String[] args)
    {
        JMFrame jmf = new JMFrame();
        jmf.setVisible(true);
    }

}
TOP

Related Classes of com.supinfo.jastermindclient.GuiLauncher

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.