events();
Logger.getLogger("presage.Simulation").setLevel(Level.SEVERE);
Logger.getLogger("gameoflife.AbstractAgent").setLevel(Level.SEVERE);
Simulation simulation = new Simulation
(presageConfig, agents, environment, pluginManager, scriptManager);
synchronized(simulation)
{
simulation.play();
simulation.wait();
}
}