mirror of https://github.com/ArduPilot/ardupilot
8 lines
157 B
C#
8 lines
157 B
C#
|
namespace ArdupilotMega.Presenter
|
|||
|
{
|
|||
|
public interface ICommand
|
|||
|
{
|
|||
|
void Execute(object param);
|
|||
|
bool CanExecute(object param);
|
|||
|
}
|
|||
|
}
|