Package ingsw.proj.cluedo.eseguibili

Source Code of ingsw.proj.cluedo.eseguibili.MainDiProva

package ingsw.proj.cluedo.eseguibili;

import ingsw.proj.cluedo.gui.swing.InterfacciaSwing;
import ingsw.proj.cluedo.logica.MainLoop;

/***
* Classe principale che si occupa dell'esecuzione del programma
* @author C&C
*
*/
public class MainDiProva {

  /***
   * Metodo che si occupa di lanciare il programma
   * @param args
   */
  public synchronized static void main(String[] args) {
    MainLoop loop = new MainLoop(new InterfacciaSwing());
    loop.run();
  }
}
TOP

Related Classes of ingsw.proj.cluedo.eseguibili.MainDiProva

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.