Exemplo n.º 1
0
 public void RegisterShip(Ship ship)
 {
     ship.Faction         = this;
     ship.Pilot.Finished += PilotFinishedJourney;
     OwnedShips.Add(ship);
 }
Exemplo n.º 2
0
 public void UnregisterShip(Ship ship)
 {
     ship.Faction         = null;
     ship.Pilot.Finished -= PilotFinishedJourney;
     OwnedShips.Remove(ship);
 }