Files
tello_drone/Tello Drone/IUdpClientWrapper.cs

9 lines
172 B
C#

using System;
namespace Tello_Drone
{
public interface IUdpClientWrapper : IDisposable
{
bool TrySend(string message, int timeOut, int maxRetries);
}
}