Ejemplo n.º 1
0
 public static bool VesselCanHoldResources(ResourceManifest manifest)
 {
     //Given a vessel, determine if it can store the manifest resources
     return(true);
 }
Ejemplo n.º 2
0
 public static void ConsumeResources(ResourceManifest manifest)
 {
     //Given a vessel, consume the resources on our manifest
 }
Ejemplo n.º 3
0
 public static void TransferResources(ResourceManifest sourceManifest, ResourceManifest destinationManifest)
 {
     //Remove the source manifest from the source vessel, and add the target manifest to the destination vessel.
 }
Ejemplo n.º 4
0
 public static bool VesselHasResources(ResourceManifest manifest)
 {
     //Given a vessel, determine if they have the resources on our manifest
     return(true);
 }