コード例 #1
0
ファイル: ResourceManifest.cs プロジェクト: Grimmas/USITools
 public static void TransferCrew(CrewManifest sourceManifest, CrewManifest destinationManifest)
 {
     //Remove the crew from the source vessel, and add the crew to the destination vessel.
 }
コード例 #2
0
ファイル: ResourceManifest.cs プロジェクト: Grimmas/USITools
 public static bool VesselCanHoldCrew(CrewManifest manifest)
 {
     //Given a vessel, determine if it can store the manifest crew
     return(true);
 }