Exemplo n.º 1
0
 public Blender(IBetterRandom random, int lowThreshold, int inBoundsThreshold, int highThreshold)
 {
     _random            = random;
     _lowThreshold      = lowThreshold;
     _inBoundsThreshold = inBoundsThreshold;
     _highThreshold     = highThreshold;
 }
Exemplo n.º 2
0
 public BiologyFactory(IBlender blender, IBetterRandom betterRandom)
 {
     _blender      = blender;
     _betterRandom = betterRandom;
 }