Ejemplo n.º 1
0
 public void Start()
 {
     Simulation = new LifeSimulation(100, 100);
     Logger     = new WebWorldLogger();
     Subscribe(Simulation);
     Simulation.Start(0);
 }
Ejemplo n.º 2
0
        public void OnNext(IWorld world)
        {
            world.Print(Logger);

            HubProxy.Clients.All.GenerationUpdated(Logger.OutPut);

            Logger = new WebWorldLogger();
        }