10 lines
182 B
C#
10 lines
182 B
C#
using System;
|
|
using System.Net.Sockets;
|
|
|
|
namespace Tello_Drone
|
|
{
|
|
public interface IUdpClientWrapper : IDisposable
|
|
{
|
|
bool TrySend(string message, int timeOut);
|
|
}
|
|
} |