using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace AGV_WPF.Plugin { public interface Iplugin { /// /// 插件名称 /// string PluginName { get; } /// /// 插件执行函数 /// /// void Fun(object o); void InitPlugin(); void Close(); } }