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