ardupilot/archive/Configurator/Configurator.Net/PresentationModels/ItalksToApm.cs
Andrew Tridgell be8864f424 renamed top level directories
ArduCopterMega -> ArduCopter
added archives directory for old code
2011-09-09 11:27:41 +10:00

21 lines
447 B
C#

using System;
namespace ArducopterConfigurator
{
public interface ItalksToApm
{
void handleLineOfText(string strRx);
event EventHandler<sendTextToApmEventArgs> sendTextToApm;
}
public class sendTextToApmEventArgs : EventArgs
{
public string textToSend;
public sendTextToApmEventArgs(string textToSend)
{
this.textToSend = textToSend;
}
}
}