Fixed a lot of bugs shoudl be able to write unit tests now.

This commit is contained in:
2019-09-05 00:51:07 -06:00
parent 9e6ce4d9f6
commit 5b5757c7d4
12 changed files with 41 additions and 81 deletions

View File

@@ -1,10 +1,9 @@
using System;
using System.Net.Sockets;
namespace Tello_Drone
{
public interface IUdpClientWrapper : IDisposable
{
bool TrySend(string message, int timeOut);
bool TrySend(string message, int timeOut, int maxRetries);
}
}