9 lines
172 B
C#
9 lines
172 B
C#
using System;
|
|
|
|
namespace Tello_Drone
|
|
{
|
|
public interface IUdpClientWrapper : IDisposable
|
|
{
|
|
bool TrySend(string message, int timeOut, int maxRetries);
|
|
}
|
|
} |