Files
tello_drone/Tello Drone/IDroneCommands.cs

10 lines
161 B
C#

namespace Tello_Drone
{
public interface IDroneCommands
{
bool Forward();
bool Reverse();
bool Up();
bool Down();
}
}