Files
tello_drone/Tello Drone/IUdpClientWrapper.cs

10 lines
182 B
C#

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