Files
tello_drone/Tello Drone/IDroneCommands.cs
2019-09-04 19:41:44 -06:00

18 lines
372 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);
}
}