public AirBags(ImpactHandler s)
 {
     this.Successor = s;
 }
 public SeatEjection(ImpactHandler s)
 {
     this.Successor = null;
 }
 public SeatBelt(ImpactHandler s)
 {
     this.Successor = s;
 }