private void Construct(ILootCreator lootCreator, ICrystalLootStorage crystalLootStorage)
 {
     _lootCreator = lootCreator.CheckNull();
     _crystalLootDef.Construct(crystalLootStorage.CheckNull());
 }
Exemple #2
0
 public LootCreatorDecorator(ILootCreator lootCreator, ILootViewModel lootViewModel, ILootViewPool lootViewPool)
 {
     LootCreator   = lootCreator.CheckNull();
     LootViewModel = lootViewModel.CheckNull();
     LootViewPool  = lootViewPool.CheckNull();
 }