Exemplo n.º 1
0
 public static void TransferCrew(CrewManifest sourceManifest, CrewManifest destinationManifest)
 {
     //Remove the crew from the source vessel, and add the crew to the destination vessel.
 }
Exemplo n.º 2
0
 public static bool VesselCanHoldCrew(CrewManifest manifest)
 {
     //Given a vessel, determine if it can store the manifest crew
     return(true);
 }