Files
tello_drone/Tello Drone/IDroneCommands.cs
2019-09-08 22:28:32 -06:00

22 lines
474 B
C#

namespace Tello_Drone
{
public interface IDroneCommands
{
void Forward(int x);
void Reverse(int x);
void Up(int z);
void Down(int z);
void Left(int y);
void Right(int y);
bool Command();
bool InitialTakeOff();
void TakeOff();
void Land();
void RotateClockWise(int r);
void FrontFlip();
void BackFlip();
void RightFlip();
void LeftFlip();
}
}