Changes
- Generator classes that simulate randomness now implement
IRandomizable
- The instance of
System.Random
within generator classes is now accessible through theRandom
property- This affects
NameGenerator
,SyllableGenerator
,SyllableSet
, andTransformerSet
- This affects
- In addition, a new fluent-style method has been added to each generator class to set the
Random
instance during configuration - These changes addresses proposal #14 which asks for control over random seeds
See the new wiki page here for code examples on controlling random seeds.