Exemplo n.º 1
0
        private static bool ShipSetDestination(MessageShipCommand msg, ShipController sc)
        {
            bool success = false;

            if (sc.checkValidSetDestinationCommand(msg))
            {
                MessageShipSetDestination msd = (MessageShipSetDestination)msg.Command;
                sc.SetDestination(msd.DestinationScId);
                success = true;
            }
            return(success);
        }
Exemplo n.º 2
0
 private static bool ShipSetDestination(MessageShipCommand msg, ShipController sc)
 {
     bool success = false;
     if (sc.checkValidSetDestinationCommand(msg))
     {
         MessageShipSetDestination msd = (MessageShipSetDestination)msg.Command;
         sc.SetDestination(msd.DestinationScId);
         success = true;
     }
     return success;
 }