private int delay; // TODO: make it variable at runtime private void InitSimulationObjects(BigBang.InitializationMode initMode) { bb = new BigBang(initMode); world = bb.GetNewWorld(); cellGen = world.GetCells(); delay = 80; }
public void AddCells(Cell[,] cells) { cellGen = new CellGeneration(cells); }