예제 #1
0
 public void Construct(ICrystalLootStorage crystalLootStorage)
 {
     _crystalLootStorage = crystalLootStorage.CheckNull();
 }
 private void Construct(ILootCreator lootCreator, ICrystalLootStorage crystalLootStorage)
 {
     _lootCreator = lootCreator.CheckNull();
     _crystalLootDef.Construct(crystalLootStorage.CheckNull());
 }
예제 #3
0
 private void Construct(ICrystalLootStorage crystalLootStorage)
 {
     _crystalLootStorage = crystalLootStorage.CheckNull();
     _crystalLootStorage.OnChangeTotalCrystals += OnChangeTotalCrystalsHandler;
 }