Package com.supinfo.launcher

Source Code of com.supinfo.launcher.Main

package com.supinfo.launcher;

import com.supinfo.anthill.Anthill;
/*
* @author Wayth
*/
public class Main {

    public static void main(String[] args) { 
              
        Anthill anthill1 = new Anthill();
        anthill1.initGame();
        for (int i = 1; i > 0; i++){ //boucle qui permet de générer un grand nombre d'age de fourmilière
        anthill1.nextGeneration();
        }
    }
}
TOP

Related Classes of com.supinfo.launcher.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.