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();
}
}