Package main

Source Code of main.StartUp

package main;

import gui.GUIController;

/**
* De klasse StartUp start het programma.
* Bevat de main methode.
* @author David Covemaeker, Maarten Minnebo, Tim Van Thuyne, Toon Kint
*/

public class StartUp
{
  /**
   * Main methode die een GUIController object instantieert.
   * @param args
   */
  public static void main(String[] args)
  {
    @SuppressWarnings("unused")
    GUIController guiController = new GUIController();
  }
}
TOP

Related Classes of main.StartUp

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.