Esempio n. 1
0
        private static void userCode(Helicopter helicopter)
        {
            helicopter.TakeOff();

            helicopter.ChangeThrottle(600);

            //put your commands here:
            //type 'helicopter.' and then see the list of commands you can do.
            helicopter.MoveForward(2000);

            helicopter.TurnRight();

            helicopter.MoveForward(2000);
            
            helicopter.Land();
        }