10 lines
161 B
C#
10 lines
161 B
C#
namespace Tello_Drone
|
|
{
|
|
public interface IDroneCommands
|
|
{
|
|
bool Forward();
|
|
bool Reverse();
|
|
bool Up();
|
|
bool Down();
|
|
}
|
|
} |