public void Initialize()
 {
     _livingNeighborsCounter = new LivingNeighborsCounter();
 }
Example #2
0
 public LifeValidator(ILivingNeighborsCounter livingNeighborsCounter)
 {
     _livingNeighborsCounter = livingNeighborsCounter;
 }