public BonusSelector(ITypeAndAmountSelector typeAndAmountSelector) { this.typeAndAmountSelector = typeAndAmountSelector; }
public FeatFocusGenerator(ICollectionSelector collectionsSelector, ITypeAndAmountSelector typeAndAmountSelector) { this.collectionsSelector = collectionsSelector; this.typeAndAmountSelector = typeAndAmountSelector; }
public AbilitiesGenerator(ITypeAndAmountSelector typeAndAmountSelector, Dice dice) { this.typeAndAmountSelector = typeAndAmountSelector; this.dice = dice; }
public SpeedsGenerator(ITypeAndAmountSelector typeAndAmountSelector, ICollectionSelector collectionSelector) { this.typeAndAmountSelector = typeAndAmountSelector; this.collectionSelector = collectionSelector; }