public void RemoveEngine(IHyperdrive engine)
 {
     throw new NotImplementedException();
 }
 public void RemoveEngine(IHyperdrive engine)
 {
     content.Remove(engine);
 }
Beispiel #3
0
 public Pilot(IHyperdrive hyperdrive)
 {
     _hyperdrive = hyperdrive;
 }
 public void AddNewEngine(IHyperdrive engine)
 {
     content.Add(engine);
 }