Package clueless.main

Source Code of clueless.main.Main

package clueless.main;

import javax.swing.JFrame;

import clueless.controller.GameController;
import clueless.view.MainGameView;
import clueless.view.NotebookView;
import clueless.view.SetupView;

/**
* Initial launching point for the Clueless software.
*
* @author T
*/
public class Main {
  /**
   * Main entry point.
   * @param args - any command line arguments.
   */
   public static void main(String args[]) {
     GameController controller = new GameController();    
   }
}
TOP

Related Classes of clueless.main.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.