Ardupilot2/Configurator/Configurator.Net/Core/IPresentationModel.cs
2011-02-13 09:25:54 +00:00

13 lines
260 B
C#

using System;
namespace ArducopterConfigurator
{
public interface IPresentationModel : ItalksToApm
{
string Name { get; }
void Activate();
void DeActivate();
event EventHandler updatedByApm;
}
}