Ejemplo n.º 1
0
 public Game(INewGenerationListener listener, int boardSize, bool[,] initilizationPattern, int delayInMiliSecond)
 {
     this.delay     = delayInMiliSecond;
     this.boardSize = boardSize;
     this.cells     = initilizationPattern;
     this.listener  = listener;
 }
Ejemplo n.º 2
0
 public Game(INewGenerationListener listener, int boardSize, int delayInMiliSecond) : this(listener, boardSize, new bool[boardSize, boardSize], delayInMiliSecond)
 {
     this.InitializeRandom();
 }