Beispiel #1
0
 public void                                     Initialize(CollectibleManagement waterGauge, CollectibleManagement pollenGauge)
 {
     this.waterGauge    = waterGauge;
     this.pollenGauge   = pollenGauge;
     this.waterReserve  = waterGauge.GetValue();
     this.pollenReserve = pollenGauge.GetValue();
 }
Beispiel #2
0
 public void             Initialize(PlantPower plPo)
 {
     this.pP            = plPo;
     this.pollenGauge   = plPo.pollenGauge;
     this.waterGauge    = plPo.waterGauge;
     this.pollenReserve = plPo.pollenReserve;
     this.waterReserve  = plPo.waterReserve;
 }