Package com.supinfo.anthill

Examples of com.supinfo.anthill.Anthill.nextGeneration()


    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();
        }
    }
}
View Full Code Here

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.