private void OnGoodSpaceShipHPChanged()
 {
     if (GoodSpaceShipHPChanged != null)
     {
         GoodSpaceShipHPChanged.Invoke(this, new PointsEventArgs {
             HitPoints = _goodSpaceShipHitPoints
         });
     }
 }
Пример #2
0
 public void GoodSpaceShipGotDamaged(int damage)
 {
     if (GoodSpaceShipHPChanged != null)
     {
         GoodSpaceShipHPChanged.Invoke(this, new PointsEventArgs()
         {
             HitPoints = damage
         });
     }
 }
Пример #3
0
 public void GoodSpaceShipGotExtraHP(int extra)
 {
     if (GoodSpaceShipHPChanged != null)
     {
         GoodSpaceShipHPChanged.Invoke(this,
                                       new PointsEventArgs()
         {
             HitPoints = _goodSpaceShipHitPoints + extra
         });
     }
 }
Пример #4
0
 public void GoodSpaceShipHPChangedEventHandler(object sender, PointEventArgs e)
 {
     GoodSpaceShipHPChanged?.Invoke(sender, e);
 }