/*
* 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);
}
}