This commit is contained in:
2019-09-11 22:59:10 -06:00
parent cede87461f
commit 6afbd9351c
4 changed files with 6 additions and 27 deletions

View File

@@ -5,8 +5,10 @@ namespace Tello_Drone.Missions
public void Run(Drone drone)
{
drone.Up(20);
drone.Land();
drone.Up(20);
drone.Forward(20);
drone.RotateClockWise(90);
drone.BackFlip();
}
}
}