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

            if (sc.checkValidSetXYCommand(msg))
            {
                MessageShipSetXY msd = (MessageShipSetXY)msg.Command;
                sc.SetXY(msd.X, msd.Y);
                success = true;
            }
            return(success);
        }